Home  >  Article  >  Backend Development  >  PHP array function sequence array_pop() - delete the last element in the array

PHP array function sequence array_pop() - delete the last element in the array

高洛峰
高洛峰Original
2016-12-30 11:09:281544browse

array_pop() definition and usage
array_pop() function deletes the last element in the array.

Syntax
array_pop(array) Parameter Description
array Required. Specifies the input array parameters.

Example

<?php 
$a=array("Dog","Cat","Horse"); 
array_pop($a); 
print_r($a); 
?>

Output:

Array ( [0] => Dog [1] => Cat )

More php array functions Sequence array_pop() - Delete the last element in the array. For related articles, please pay attention to the PHP Chinese website!

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