PHP array_key_exists()
函数检查如果给定的键在数组中设置,它将返回TRUE
。array_key_exists()
函数语法是 -
bool array_key_exists ( $key, $array );
参数
- key - 要搜索的键。
- array - 这是一个要被搜索的数组
返回值
- 如果给定的键在数组中设置,则返回
TRUE
,否则返回FALSE
。
示例
试试下面的例子 -
<?php
$input = array('first' => 10, 'second' => 400);
if (array_key_exists('first', $input)) {
echo "The 'first' element is in the array";
}
?>
这将产生以下结果 -
The 'first' element is in the array