【函数功能】
该函数删除数组中的最后一个元素。
【函数语法】
array_pop (array &$array)
【参数说明】
&$array:必需,要操作的数组。
【演示程序】
<?php
/**
* array_pop (array &$array)
* **/
$array = array('site_name'=>'PHP1234','site_url'=>'php1234.cn','site_auth'=>'明礼馨德');
var_dump(array_pop($array));
echo '<br>';
var_dump($array);
?>
【输出结果】
string(12) "明礼馨德"
array(2) { ["site_name"]=> string(7) "PHP1234" ["site_url"]=> string(10) "php1234.cn" }
【特别注意】
1.返回数组的最后一个值。如果数组是空的,或者非数组,将返回 NULL。
2.PHP 版本:4+。
【原版定义】
/**
* Pop the element off the end of array
* @link http://www.php.net/manual/en/function.array-pop.php
* @param array array <p>
* The array to get the value from.
* </p>
* @return mixed the last value of array.
* If array is empty (or is not an array),
* &null; will be returned.
*/
转载请注明出处:php1234.cn ,原文地址:http://www.php1234.cn/a/functions/2017/0102/175.html