PHP array_key_exists() Function
Complete PHP Array Reference
Definition and Usage
The array_key_exists() function checks an array for a specified key,
and returns true if the key exists and false is the key does not exist.
Syntax
array_key_exists(key,array)
|
Parameter |
Description |
key |
Required. Specifies the key |
array |
Required. Specifies an array |
Tips and Notes
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 3)
Example 1
<?php
$a=array("a"=>"Dog","b"=>"Cat");
if (array_key_exists("a",$a))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
|
The output of the code above will be:
Example 2
<?php
$a=array("a"=>"Dog","b"=>"Cat");
if (array_key_exists("c",$a))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
|
The output of the code above will be:
Example 3
<?php
$a=array("Dog",Cat");
if (array_key_exists(0,$a))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
|
The output of the code above will be:
Complete PHP Array Reference
Learn XML with <oXygen/> XML Editor - Free Trial!
|
|
oXygen helps you learn to define,
edit, validate and transform XML documents. Supported technologies include XML Schema,
DTD, Relax NG, XSLT, XPath, XQuery, CSS.
Understand in no time how XSLT and XQuery work by using the intuitive oXygen debugger!
Do you have any XML related questions? Get free answers from the oXygen
XML forum
and from the video
demonstrations.
Download a FREE 30-day trial today!
|
|