Skip to content

Instantly share code, notes, and snippets.

@Narven
Created May 1, 2013 14:09
Show Gist options
  • Save Narven/5495459 to your computer and use it in GitHub Desktop.
Save Narven/5495459 to your computer and use it in GitHub Desktop.
Search in a multidimensional array for a specific array with a specific key/pair
// get highlight photo
$search = array_filter($user_photos, function($v) {
if ($v['highlight'] == 1) return $v;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment