Answers for "last element php collection"

PHP
2

php last item of array

echo end(['Gon', 'Killua', 'Hisoka']) // print Hisoka
Posted by: Guest on January-31-2021
0

php last element of the array.

<?php
  
// input array
$arr = array('Ram', 'Shita', 'Geeta');
  
// end function print the last
// element of the array.
echo end($arr); 
  
?>
Posted by: Guest on June-06-2021

Code answers related to "last element php collection"

Browse Popular Code Answers by Language