Skip to content

Instantly share code, notes, and snippets.

@MilkZoft
Created January 18, 2012 03:54
Show Gist options
  • Select an option

  • Save MilkZoft/1630798 to your computer and use it in GitHub Desktop.

Select an option

Save MilkZoft/1630798 to your computer and use it in GitHub Desktop.
codejobs - isMultiArray - PHP
<?php
function isMultiArray($multiArray) {
if(is_array($multiArray)) {
foreach($multiArray as $array) {
if(is_array($array)) {
return TRUE;
}
}
}
return FALSE;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment