array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.array-pop.php', 1 => 'array_pop', 2 => 'Pop the element off the end of array', ), 'up' => array ( 0 => 'ref.array.php', 1 => 'Функції для роботи з масивами', ), 'prev' => array ( 0 => 'function.array-pad.php', 1 => 'array_pad', ), 'next' => array ( 0 => 'function.array-product.php', 1 => 'array_product', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/array/functions/array-pop.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 4, PHP 5, PHP 7, PHP 8)
array_pop — Pop the element off the end of array
array_pop() pops and returns the value of
the last element of array, shortening the
array by one element.
Зауваження: Ця функція скидатиме() вказівник array вхідного масиву після використання.
arrayThe array to get the value from.
Returns the value of the last element of array.
If array is empty,
null will be returned.
Приклад #1 array_pop() example
<?php
$stack = array("orange", "banana", "apple", "raspberry");
$fruit = array_pop($stack);
print_r($stack);
?>After this, $stack will have only 3 elements:
Array
(
[0] => orange
[1] => banana
[2] => apple
)
and raspberry will be assigned to
$fruit.