3
votes
Checking if array is multidimensional or not?
For PHP 4.2.0 or newer:
function is_multi($array) {
return (count($array) != count($array, 1));
}
…
1
vote
PHP Arrays: A good way to check if an array is associative or sequential?
function is_associative($arr) {
return (array_merge($arr) !== $arr || !is_numeric(implode(array_keys($arr))));
}
…
