How to get specific key value from multidimensional array in php

How to get specific key value from multidimensional array in php

In this post we will give you information about How to get specific key value from multidimensional array in php. Hear we will give you detail about How to get specific key value from multidimensional array in phpAnd how to use it also give you demo for it if it is necessary.

In this post, i will learn you how to get specific key value array from multidimensional array in php. we will get specific key value array using array_column() and array_map().

we almost require to get specific key and value in array when work with php multidimensional array. like if you have one multidimensional array with each array with id, name, email etc key. You need to get only all name from array then how you can get it?, i will show you how we can do it. i will give you full example:

$names = array_column($myArray, 'name');

$emails = array_map(function ($ar) {return $ar['email'];}, $myArray);

Example:

<?php

$myArray = [

[

'name' => 'Paresh',

'email' => 'paresh@gmail.com'

],

[

'name' => 'Rakesh',

'email' => 'rakesh@gmail.com'

],

[

'name' => 'Naresh',

'email' => 'naresh@gmail.com'

],

];

$names = array_column($myArray, 'name');

$emails = array_map(function ($ar) {return $ar['email'];}, $myArray);

print_r($names);

print_r($emails);

?>

Output:

Also see:AngularJS – convert comma separated string to array example

Array

(

[0] => Paresh

[1] => Rakesh

[2] => Naresh

)

Array

(

[0] => paresh@gmail.com

[1] => rakesh@gmail.com

[2] => naresh@gmail.com

)

I hope it can help you….

Hope this code and post will helped you for implement How to get specific key value from multidimensional array in php. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

  +  77  =  83

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US