array_key_exists -- 检查给定的键名或索引是否存在于数组中
array_key_exists
(PHP 4 >= 4.1.0)
array_key_exists -- 检查给定的键名或索引是否存在于数组中
说明
bool array_key_exists ( mixed key, array search)
array_key_exists() 在给定的 key 存在于数组中时返回 TRUE。key 可以是任何能作为数组索引的值。
例子 1. array_key_exists() 例子
1, "second" => 4);
if (array_key_exists("first", $search_array)) {
echo "The 'first' element is in the array";
}
?>