Skip to content

Instantly share code, notes, and snippets.

@dflima
Created September 6, 2016 16:49
Show Gist options
  • Save dflima/886ddcf84115e39cffcd81043b142a60 to your computer and use it in GitHub Desktop.
Save dflima/886ddcf84115e39cffcd81043b142a60 to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Support\Arr;
function array_multi_search(array $array, $key)
{
if (!is_string($key)) {
return false;
}
$array = array_keys(Arr::dot($array));
return array_reduce($array, function ($carry, $item) use ($key) {
return strpos($item, $key) || $carry;
}, false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment