array_pop
Pop the element off the end of array
&reftitle.description;
mixedarray_pop
arrayarray
array_pop pops and returns the value of
the last element of array, shortening the
array by one element.
&array.resetspointer;
&reftitle.parameters;
array
The array to get the value from.
&reftitle.returnvalues;
Returns the value of the last element of array.
If array is empty,
&null; will be returned.
&reftitle.examples;
array_pop example
]]>
After this, $stack will have only 3 elements:
orange
[1] => banana
[2] => apple
)
]]>
and raspberry will be assigned to
$fruit.
&reftitle.seealso;
array_push
array_shift
array_unshift