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 Quote 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); Quote Link to comment https://forums.phpfreaks.com/topic/240375-print-highest-index/#findComment-1234699 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.