Skip to content

Instantly share code, notes, and snippets.

@dankerizer
Created September 3, 2018 17:13
Show Gist options
  • Select an option

  • Save dankerizer/110772724c2aa37117376f0ff12146bb to your computer and use it in GitHub Desktop.

Select an option

Save dankerizer/110772724c2aa37117376f0ff12146bb to your computer and use it in GitHub Desktop.
find array key by value
<?php
function themeid_find_array($array, $field, $value)
{
if (is_array($array)) {
foreach ($array as $key => $item) {
if ($item[$field] === $value)
return $key;
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment