检查数组中是否存在键"Volvo":
<?php
$a=array("Volvo"=>"XC90","BMW"=>"X5");
if (array_key_exists("Volvo",$a))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
亲自试一试 »
array_key_exists() 函数检查数组中是否有指定的键,如果键存在则返回 true,如果键不存在则返回 false。
提示:请记住,如果在指定数组时跳过键,则会生成一个整数键,从 0 开始,每个值加 1。 (参见下面的示例)
array_key_exists(
key, array)
Parameter | Description |
---|---|
key | Required. Specifies the key |
array | Required. Specifies an array |
返回值: | 如果键存在则返回 TRUE,如果键不存在则返回 FALSE |
---|---|
PHP 版本: | 4.0.7+ |
检查数组中是否存在键"Toyota":
<?php
$a=array("Volvo"=>"XC90","BMW"=>"X5");
if (array_key_exists("Toyota",$a))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
亲自试一试 »
检查数组中是否存在整数键"0":
<?php
$a=array("Volvo","BMW");
if (array_key_exists(0,$a))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!