Suppose a PHP array, when cast to JSON, has the following format:
[{
"key": "width",
"value": "1200",
"label": "Width (mm)",
"choice": ""
},
{
"key": "height",
"value": "900",
"label": "Height (mm)",
"choice": ""
},
{
"key": "material",
"value": "paper",
"label": "Material",
"choice": "Paper"
}]
(This is a shortened version of the original, which can have many more elements)
Let's suppose I want to efficiently find what material is used. In other words, I want to search for a nested array that has for key
the value material
, and I want to return the value
which would be paper
.
I know this can be done by using a foreach/while loop, but PHP is rich with compiled array functions that I'm not very familiar with. What's the best function to use here?
UPDATE: What I've tried so far
Here's two things I've tried so far:
Attempt #1:
$json = '[{"key":"width","value":"1200","label":"Width (mm)","choice":""},{"key":"height","value":"900","label":"Height (mm)","choice":""},{"key":"material","value":"paper","label":"Material","choice":"Paper"}]';
$array = json_encode($json, true);
$material = '';
foreach($array as $nestedArray) {
if($nestedArray['key'] = 'material') {
$material = $nestedArray['value'];
}
}
Attempt #2:
$json = '[{"key":"width","value":"1200","label":"Width (mm)","choice":""},{"key":"height","value":"900","label":"Height (mm)","choice":""},{"key":"material","value":"paper","label":"Material","choice":"Paper"}]';
$array = json_decode($json, true);
$filteredArray = array_filter($array, function($array) {
return ($array['key'] == 'material');
});
$arr = array_pop($filteredArray)['value'];
Both produce the right value, but #1 is messy, and #2 may not be the best use of PHPs array functions.