php is in array assoc code example
Example 1: how to create an associative array in php
<?php
$associativeArray = [
"carOne" => "BMW",
"carTwo" => "VW",
"carThree" => "Mercedes"
];
echo $associativeArray["carTwo"] . " Is a german brand";
?>
Example 2: php check array is not associative
count(array_filter(array_keys($array), 'is_string')) === 0