是的,array_key_exists
函数可以用于检查多维数组
[ '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'
存在于数组中。