Answers for "php how to check if array is associative"

PHP
1

php check array is not associative

count(array_filter(array_keys($array), 'is_string')) === 0
Posted by: Guest on September-03-2020
0

php check if associative array

// return true if array is associative
function checkAssoc($array) {
    $nonAssociative = count(array_filter(array_keys($array), 'is_string')) === 0;
    if ($nonAssociative) {
        return false;
    } else {
        return true;
    }
}
// Example
$array = ["el1" => 1, "el2" => 2, "el3" => 3];
checkAssoc($array);
// bool(true)
Posted by: Guest on August-02-2021

Code answers related to "php how to check if array is associative"

Browse Popular Code Answers by Language