Answers for "find the last item in an array php"

PHP
17

how to get last array element in php

<?php

$source_array = ['key1' => 'value1', 'key2' => 'value2', 'key3' => 'value3'];

$result = end($source_array);

echo "Last element: ".$result;

?>
Posted by: Guest on August-05-2020

Code answers related to "find the last item in an array php"

Browse Popular Code Answers by Language