PHP Array Exercises : Filter a multi-dimensional array and get those items that will match with the specified value
Write a PHP function to filter a multi-dimensional array. The function will return those items that will match with the specified value.
Sample Solution:
PHP Code:
Output:
Array ( [1] => Array ( [key1] => Yellow [key2] => White [key3] => Pink ) )
Flowchart:

PHP Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a PHP program to filter out some array elements with certain key-names.
Next: Write a PHP script to delete a specific value from an array using array_filter() function.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.