Heim  >  Artikel  >  Backend-Entwicklung  >  php-Arrays函数-array_pop-将数组的最后一个单元弹出_PHP教程

php-Arrays函数-array_pop-将数组的最后一个单元弹出_PHP教程

WBOY
WBOYOriginal
2016-07-13 17:51:06891Durchsuche

array_pop() 将数组的最后一个单元弹出

【功能】
         该函数将弹出并返回array数组的最后一个单元,并将数组array的长度减一。
         如果array为空或者不是数组将返回NULL       
【使用范围】
         php4、php5.
【使用】
         mixed array_pop( array &array )
         mixed为混合型,函数在正确执行时返回数组,如果array为空或者不是数组将返回null
【示例】
[php]
$stack = array("orange","banana","apple","raspberry"); 
var_dump( array_pop($stack) ); 
var_dump($stack); 
/*
string(9) "raspberry"
array(3) {
  [0]=>
  string(6) "orange"
  [1]=>
  string(6) "banana"
  [2]=>
  string(5) "apple"
}
*/ 

 


摘自 zuodefeng的笔记

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478219.htmlTechArticlearray_pop() 将数组的最后一个单元弹出 【功能】 该函数将弹出并返回array数组的最后一个单元,并将数组array的长度减一。 如果array为空或者...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn