PHP array_pop() 函数
定义和用法
array_pop() 函数删除数组中的最后一个元素。
语法
array_pop(array)
参数 | 描述 |
---|---|
array | 必需。规定输入的数组参数。 |
例子
<?php $a=array("Dog","Cat","Horse"); array_pop($a); print_r($a); ?>
输出:
Array ( [0] => Dog [1] => Cat )
李清波 2015-09-30 PHP函数 1694 复制当前网址
array_pop() 函数删除数组中的最后一个元素。
array_pop(array)
参数 | 描述 |
---|---|
array | 必需。规定输入的数组参数。 |
<?php $a=array("Dog","Cat","Horse"); array_pop($a); print_r($a); ?>
输出:
Array ( [0] => Dog [1] => Cat )
上一篇:array_product
下一篇:array_pad
__construct
zip_read
zip_open
zip_entry_read
zip_entry_open
zip_entry_name
zip_entry_filesize
zip_entry_compressionmethod
zip_entry_compressedsize
zip_entry_close
zip_close
xpath
xml_set_unparsed_entity_decl_handler
xml_set_processing_instruction_handler
xml_set_object
xml_set_notation_decl_handler
xml_set_external_entity_ref_handler
xml_set_element_handler
xml_set_default_handler
xml_set_character_data_handler