dotkpay Posted June 25, 2011 Share Posted June 25, 2011 Hello, Supposing I have a list of array variables as follows; $car[0] = "saloon"; $car[1] = "coupe"; $car[2] = "suv"; $car[3] = "truck"; How do I get the value of the highest index which is $car[3] i.e. how do I get to echo the string "truck". If I use the array function 'max', it will give me the string "saloon" because it is the longest with 6 characters. echo max($car); // echoes saloon Could anyone show me how to echo "truck" in a similar way, which actually means employing a function that gets the highest index and not the one with the longest string. Thanks in advance Link to comment https://forums.phpfreaks.com/topic/240375-print-highest-index/ Share on other sites More sharing options...
jcbones Posted June 25, 2011 Share Posted June 25, 2011 echo end($car); Link to comment https://forums.phpfreaks.com/topic/240375-print-highest-index/#findComment-1234699 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.