There is many - good and less good - ways to check associative arrays, but how would you check a "fully associative" array?
$john = array('name' => 'john', , 8 => 'eight', 'children' => array('fred', 'jane'));
$mary1 = array('name' => 'mary', 0 => 'zero', 'children' => array('jane'));
$mary2 = array('name' => 'mary', 'zero', 'children' => array('jane'));
Here $john is fully associative, $mary1 and $mary2 are not.
$johnand$mary1. – Alin Purcaru Jan 9 '11 at 17:11$mary1not associative? If it it is only because one key is0then just check whetherarray_key_exists(0, $array). Or give a proper definition. What aboutarray( 0 => 0)? Andarray(1 => 1)? – Felix Kling Jan 9 '11 at 17:11is_array()for associative arrays. – PhpMyCoder Jan 9 '11 at 17:12