PHP function array_pop()
Availability in PHP 4.0
Pop the element off the end of array
Parameters
| Parameter | Data type | Default value | Note |
|---|---|---|---|
$array |
array |
not | The array to get the value from. |
Return values
mixed
the last value of array. If array is empty (or is not an array), &null; will be returned.