Jump to content

print highest index


dotkpay

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.