亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

php array_key_exists能檢查多維數組嗎

PHP
小樊
81
2024-11-23 22:27:33
欄目: 編程語言

是的,array_key_exists 函數可以用于檢查多維數組

<?php
$array = [
    'a' => [
        'b' => 'value1',
        'c' => 'value2',
    ],
    'd' => [
        'e' => 'value3',
        'f' => 'value4',
    ],
];

// 檢查多維數組中是否存在指定的鍵
if (array_key_exists('a.b', $array)) {
    echo "Key 'a.b' exists in the array.";
} else {
    echo "Key 'a.b' does not exist in the array.";
}

if (array_key_exists('d.e', $array)) {
    echo "Key 'd.e' exists in the array.";
} else {
    echo "Key 'd.e' does not exist in the array.";
}
?>

在這個例子中,array_key_exists('a.b', $array) 將返回 true,因為鍵 'a.b' 存在于數組中。同樣,array_key_exists('d.e', $array) 也將返回 true,因為鍵 'd.e' 存在于數組中。

0
濮阳县| 延安市| 瓦房店市| 化州市| 辰溪县| 中江县| 沾益县| 龙岩市| 合阳县| 咸丰县| 斗六市| 武鸣县| 繁峙县| 宁远县| 海原县| 齐齐哈尔市| 福建省| 岳阳市| 措勤县| 柞水县| 视频| 龙山县| 仪陇县| 绥阳县| 志丹县| 息烽县| 泾阳县| 芦山县| 顺昌县| 安泽县| 邯郸市| 通渭县| 益阳市| 灵石县| 林西县| 奇台县| 铜川市| 阳山县| 松原市| 台江县| 高碑店市|