當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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!






相關用法


注:本文由純淨天空篩選整理自 PHP key_exists() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。