Home >Backend Development >PHP Tutorial >How to Efficiently Extract Column Values from Multidimensional Arrays in PHP?
Retrieving Array Column Values with PHP Functions
Extracting specific column values from an array of arrays can be a common task in PHP programming. Here's how to accomplish this using built-in functions:
Using array_column() for PHP 5.5 and later
PHP 5.5 introduced the array_column() function, which allows you to effortlessly extract column values from an array of arrays:
$samples = array( array('page' => 'page1', 'name' => 'pagename1'), array('page' => 'page2', 'name' => 'pagename2'), array('page' => 'page3', 'name' => 'pagename3') ); $names = array_column($samples, 'name'); print_r($names); // [pagename1, pagename2, pagename3]
The array_column() function takes two parameters: the array of arrays and the column key to extract. It returns a new array containing the specified column values.
Using array_map() for Earlier PHP Versions
For PHP versions prior to 5.5, you can use the array_map() function in combination with an anonymous function:
$names = array_map(function($row) { return $row['name']; }, $samples); print_r($names); // [pagename1, pagename2, pagename3]
The array_map() function applies a user-defined function, here an anonymous function, to each element in an array. The anonymous function returns the value of the 'name' key in each row, resulting in the desired column array.
These functions provide convenient ways to extract column values from multidimensional arrays, making your code more concise and efficient.
The above is the detailed content of How to Efficiently Extract Column Values from Multidimensional Arrays in PHP?. For more information, please follow other related articles on the PHP Chinese website!