Home  >  Article  >  Backend Development  >  Pop the element and delete the element's position in the original array

Pop the element and delete the element's position in the original array

WBOY
WBOYOriginal
2016-07-25 08:47:171029browse
  1. function _array_pop($key,&$array)
  2. {
  3. if(array_key_exists($key,$array))
  4. {
  5. $tmp=$array[$key];
  6. unset($array[$key]);
  7. return $tmp;
  8. }
  9. else
  10. {
  11. return ‘error’;
  12. }
  13. }
复制代码


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn