(PHP 4 >= 4.0.7, PHP 5, PHP 7)
array_key_exists — 检查给定的键名或索引是否存在于数组中
array_key_exists() 在给定的 key
存在于数组中时返回 TRUE
。key
可以是任何能作为数组索引的值。array_key_exists()
也可用于对象。
key
要检查的键。
search
一个数组,包含待检查的键。
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
Example #1 array_key_exists() 例子
<?php
$search_array = array('first' => 1, 'second' => 4);
if (array_key_exists('first', $search_array)) {
echo "The 'first' element is in the array";
}
?>
Note:
为了向下兼容,可以使用下列已废弃的别名: key_exists()
Note:
For backward compatibility reasons, array_key_exists() will also return
TRUE
ifkey
is a property defined within an object given assearch
. This behaviour should not be relied upon, and care should be taken to ensure thatsearch
is an array.To check whether a property exists in an object, use property_exists().