Skip to content

Instantly share code, notes, and snippets.

@kjbrum
Last active November 11, 2015 20:36
Show Gist options
  • Save kjbrum/9508ce6e264084a11b5b to your computer and use it in GitHub Desktop.
Save kjbrum/9508ce6e264084a11b5b to your computer and use it in GitHub Desktop.
Check if an array is a multidimensional array.
<?php
/**
* Check if an array is a multidimensional array.
*
* @param array $arr The array to check
* @return boolean Whether the the array is a multidimensional array or not
*/
function is_multi_array( $x ) {
if( count( array_filter( $x,'is_array' ) ) > 0 ) return true;
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment