Answers for "php if associative array contains value"

PHP
22

check if array has value php

$myArr = [38, 18, 10, 7, "15"];

echo in_array(10, $myArr); // TRUE
echo in_array(19, $myArr); // TRUE

// Without strict check
echo in_array("18", $myArr); // TRUE
// With strict check
echo in_array("18", $myArr, true); // FALSE
Posted by: Guest on January-21-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 if associative array contains value"

Browse Popular Code Answers by Language