array_last
(PHP 8 >= 8.5.0)
array_last — Gets the last value of an array
Parameters
array- An array.
Return Values
Returns the last value of array if the array is not empty; null otherwise.
Examples
Example #1 Basic array_last() Usage
<?php
$array = [1 => 'a', 0 => 'b', 3 => 'c', 2 => 'd'];
$lastValue = array_last($array);
var_dump($lastValue);
?>The above example will output:
string(1) "d"
See Also
- array_key_last() - Gets the last key of an array
- array_first() - Gets the first value of an array
↑ and ↓ to navigate • Enter to select • Esc to close • / to open