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

WBOY
Release: 2016-07-21 15:22:46
Original
1159 people have browsed it

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

Copy code The code is as follows:

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

Output:

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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/324608.htmlTechArticlearray_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 Copy code...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!