Check if the key "Volvo" exists in an array:
<?php
$a=array("Volvo"=>"XC90","BMW"=>"X5");
if (array_key_exists("Volvo",$a))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
Try it Yourself »
The array_key_exists() function checks an array for a specified key, and returns true if the key exists and false if the key does not exist.
Tip: Remember that if you skip the key when you specify an array, an integer key is generated, starting at 0 and increases by 1 for each value. (See example below)
array_key_exists(
key, array)
Parameter | Description |
---|---|
key | Required. Specifies the key |
array | Required. Specifies an array |
Return Value: | Returns TRUE if the key exists and FALSE if the key does not exist |
---|---|
PHP Version: | 4.0.7+ |
Check if the key "Toyota" exists in an array:
<?php
$a=array("Volvo"=>"XC90","BMW"=>"X5");
if (array_key_exists("Toyota",$a))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
Try it Yourself »
Check if the integer key "0" exists in an array:
<?php
$a=array("Volvo","BMW");
if (array_key_exists(0,$a))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!