Snippet Name: Check if array is associative Description: The is_assoc_array function checks if given array is associative or not. Also see:» Pre-populated List of Countries » Array of all US states » Search array elements for a substring » Create a drop down menu from an array ... » Unset unkown array element » Parse RSS into array » Quickly sort associative arrays » Recursively traverse array » Combining three arrays into one » Combining two arrays into one » Unique Array function » Pick Randomly from Array » HEX to RGB array » Filter Empty Array Elements Comment: (none) Language: PHP Highlight Mode: PHP Last Modified: March 16th, 2009
Description: The is_assoc_array function checks if given array is associative or not.
Also see:» Pre-populated List of Countries » Array of all US states » Search array elements for a substring » Create a drop down menu from an array ... » Unset unkown array element » Parse RSS into array » Quickly sort associative arrays » Recursively traverse array » Combining three arrays into one » Combining two arrays into one » Unique Array function » Pick Randomly from Array » HEX to RGB array » Filter Empty Array Elements
<?PHP FUNCTION is_assoc_array($array){ IF(IS_ARRAY($array) && !IS_NUMERIC(ARRAY_SHIFT(ARRAY_KEYS($array)))){ RETURN TRUE; } RETURN FALSE; } ?>