PHP 中的 array_key_exists() 函数
phpprogrammingserver side programming
array_key_exists() 函数检查数组中是否存在指定的键。如果键存在,则函数返回 true,如果键不存在,则返回 false。
语法
array_key_exists(key, arr)
参数
key − 指定要检查的键。
arr − 我们将在其中找到键的数组。
返回
如果键存在,则 array_key_exists() 函数返回 true,如果键不存在,则返回 false。
示例
<?php $arr = array("One"=>"Tennis","Two"=>"Football", "Three"=>"Cricket"); if (array_key_exists("Three",$arr)) { echo "Key is in the array!"; } else { echo "Key is not in the array!"; } ?>
输出
Key is in the array!