I need to search a multidimensional array for a specific value in any of the indexed subarrays.
In other words, I need to check a single column of the multidimension
You can use this with only two parameter
function whatever($array, $val) { foreach ($array as $item) if (isset($item) && in_array($val,$item)) return 1; return 0; }