ItSolutionStuff.com

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:

Hello

I hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Check Current PHP Version in Ubuntu?

Read Now →

How to Write PHP Code in Laravel Blade?

Read Now →

Convert HTML to PDF in PHP with Dompdf Example

Read Now →

How to Get Folder Path from File Path in PHP?

Read Now →

How to Send Mail in PHP Laravel?

Read Now →

How to Convert Object into Array in PHP?

Read Now →

How to Count Number of Files in Directory using PHP?

Read Now →

How to access PHP variables in JQuery?

Read Now →

How to Count Number of Files in a Directory in PHP?

Read Now →

How to Find Day Name from Specific Date in PHP?

Read Now →

How to Remove Null Values from Array in PHP?

Read Now →

How to Merge Two Array with Same Keys without Loop in PHP?

Read Now →