List Comprehension in PHP
Often you need to extract some data from arrays. In Python it's usually done by using list comprehensions. Sadly PHP doesn't have this structure, but it can be achieved using the array_map function like the example below:
<?php
$data = $multi_dimensional_array;
$extracted_info = array_map(function($a) {return $a['second_dimension']['third_dimension'];}, $data);
?>
Using this code you will have all the values from third dimension item as an array in $extracted_info variable.
Related protips:
Written by Rafael Silva
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#