ItSolutionStuff.com

How to get Keys from Array in PHP Laravel?

By Hardik Savani • May 14, 2024
PHP Laravel

Few days ago, I was working on my new Laravel 5.4 application and i require to get keys name from my array. i was thing how we can get it and laravel provide us for to do it. Finally i found array helper function in Laravel docs. There are several array helper function available for array.

I found array_keys() helper for getting keys name from our array. array_keys() will return array of keys. It could be easy to work with keys name in array. So in this example i want to share with you small example using array_keys() helper.

I created one route "myarraykeys" with my $myArray variable, and in this route i used array_keys() helper and get keys array.

Example:

Route::get('myarraykeys', function () {


$myArray = [

'name'=>'Hardik Savani',

'email'=>'itsolutionstuff@gmail.com',

'website'=>'itsolutionstuff.com'

];


$myArrayKey = array_keys($myArray);


dd($myArrayKey);


});

Output:

Array

(

[0] => name

[1] => email

[2] => website

)

I hope it can help you...

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

Laravel Array Length Validation Example

Read Now →

How to Check Query Execution Time in Laravel?

Read Now →

Laravel Password and Confirm Password Validation Example

Read Now →

How to Get Current Date Time and Day in Laravel?

Read Now →

Laravel Remove All Spaces from String Example

Read Now →

Laravel withSum() with Where Condition Example

Read Now →

Laravel withCount() with Where Condition Example

Read Now →

Laravel Ajax Request with Validation Example

Read Now →

AngularJS Convert Comma Separated String to Array Example

Read Now →

How to Remove Duplicate Values from Array in PHP?

Read Now →

How to Remove Key from Array in Laravel?

Read Now →

Laravel Create Custom Error Page Example

Read Now →

How to Get Last Element of Array in Javascript?

Read Now →

How to Remove Null Values from Array in PHP?

Read Now →