PHP key_exists( ) 函数用于检查给定的键或索引是否存在于数组中。它是 array_key_exists( ) 的别名。该函数是在 PHP 4.0.6 中引入的。
用法
bool key_exists ( mixed $key , array $array );
参数
参数 | 描述 | 是强制性的 |
---|---|---|
array | 指定要使用的数组。 | compulsory |
key | 指定 key 。 | compulsory |
返回
如果键存在,该函数返回真,如果键不存在,则返回假。
例子1
<?php
$subjects = array("sonoo"=>"OS","ajeet"=>"compiler","jin"=>"dbms");
if (key_exists("sonoo", $subjects))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
输出:
Key exists!
例子2
<?php
$car=array("tata"=>"jaguar","BMW"=>"X6");
if (array_key_exists("tata",$car))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
输出:
Key exists!
例子3
<?php
$array = array("ram"=>25, "krishna"=>10, "aakash"=>20, "gaurav");
if (key_exists("krishna", $array))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
输出:
Key exists!
示例 4
<?php
$car=array("jaguar","BMW");
if (array_key_exists(0,$car))
{
echo "Key exists!";
}
else
{
echo "Key does not exist!";
}
?>
输出:
Key exists!
相关用法
- PHP key()用法及代码示例
- PHP ksort()用法及代码示例
- PHP krsort()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- PHP PHPUnit assertIsNotFloat()用法及代码示例
- PHP ReflectionClass getTraitAliases()用法及代码示例
- PHP hash_hmac()用法及代码示例
- PHP String wordwrap()用法及代码示例
- PHP imagecreatefromstring()用法及代码示例
- PHP is_file( )用法及代码示例
- PHP ArrayIterator asort()用法及代码示例
- PHP IntlCalendar getTimeZone()用法及代码示例
- PHP SplPriorityQueue isCorrupted()用法及代码示例
- PHP imagegif()用法及代码示例
- PHP imageresolution()用法及代码示例
- PHP SplFileInfo getPerms()用法及代码示例
- PHP array_reverse()用法及代码示例
- PHP IntlCalendar getActualMinimum()用法及代码示例
- PHP metaphone()用法及代码示例
- PHP imagebmp()用法及代码示例
注:本文由纯净天空筛选整理自 PHP key_exists() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。