All great answers... here's my three lines that I'm always using
function isMultiArray($a){ foreach($a as $v) if(is_array($v)) return TRUE; return FALSE; }