Skip to content

Instantly share code, notes, and snippets.

@maxkostinevich
Created December 29, 2015 19:25
Show Gist options
  • Save maxkostinevich/0f3fd7530d830ce2b142 to your computer and use it in GitHub Desktop.
Save maxkostinevich/0f3fd7530d830ce2b142 to your computer and use it in GitHub Desktop.
Search in JSON-Array
<?php
function search_json($obj, $field, $value) {
foreach($obj as $item) {
foreach($item as $child) {
if(isset($child[$field]) && ($child[$field] == $value)) {
return $child;
}
}
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment