Skip to content

Instantly share code, notes, and snippets.

View samiam9297's full-sized avatar

Sami Aji samiam9297

View GitHub Profile
@Billy-
Billy- / in_array_r()
Created June 22, 2014 15:47
in_array_r() - a multidimensional version of PHP's in_array()
function in_array_r($needle, $haystack, $strict = false) {
foreach ($haystack as $item) {
if (($strict ? $item === $needle : $item == $needle) || (is_array($item) && in_array_r($needle, $item, $strict))) {
return true;
}
}
return false;
}