How to Get Maximum Key Value of Array in PHP?
By Hardik Savani
• May 14, 2024
PHP
Sometimes, you need to get maximum key value of your array but you try to get with loop and any function etc, but in bellow example you can see we can get biggest key value from our php array by using max() and array_keys(). So, let's try to use in your code this way:
Example:
<?php
$myArray = ['2'=>'Hey','4'=>'Hello','1'=>'Hi','3'=>'GH'];
$new_key = max(array_keys($myArray));
$new_val = $myArray[$new_key];
print_r($new_val);
?>
Output:
Read Also: How to Find php.ini File in Ubuntu?
Hello
I hope it can help you...