最新公告
  • 欢迎您光临码农资源网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!加入我们
  • PHP数组函数key_exists()的用法

    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!
    
    想要了解更多内容,请持续关注码农资源网,一起探索发现编程世界的无限可能!
    本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
    如有侵权请发送邮件至1943759704@qq.com删除

    码农资源网 » PHP数组函数key_exists()的用法
    • 7会员总数(位)
    • 25846资源总数(个)
    • 0本周发布(个)
    • 0 今日发布(个)
    • 293稳定运行(天)

    提供最优质的资源集合

    立即查看 了解详情