首頁  >  文章  >  後端開發  >  php數組函數序列之array_key_exists() - 尋找數組鍵名是否存在

php數組函數序列之array_key_exists() - 尋找數組鍵名是否存在

高洛峰
高洛峰原創
2016-12-30 11:07:511466瀏覽

array_key_exists() 定義與用法 
array_key_exists() 函數判斷某個陣列中是否有指定的 key,如果 key 存在,則傳回 true,否則傳回 false。 

語法 
array_key_exists(key,array) 
參數 說明 
key 必要。規定鍵名。 
array 必需。規定輸入的數組。

範例1 

<?php 
$a=array("a"=>"Dog","b"=>"Cat"); 
if (array_key_exists("a",$a)) 
{ 
echo "Key exists!"; 
} 
else 
{ 
echo "Key does not exist!"; 
} 
?>

輸出: 

Key exists! 
範例2 

<?php 
$a=array("a"=>"Dog","b"=>"Cat"); 
if (array_key_exists("c",$a)) 
{ 
echo "Key exists!"; 
} 
else 
{ 
echo "Key does not exist!"; 
} 
?>

輸出: 

Key does not

<?php 
$a=array("Dog",Cat"); 
if (array_key_exists(0,$a)) 
{ 
echo "Key exists!"; 
} 
else 
{ 
echo "Key does not exist!"; 
} 
?>

輸出: 

Key does not rrreee
輸出: 

Key does not rrreee !

更多php數組函數序列之array_key_exists() - 尋找數組鍵名是否有相關文章請關注PHP中文網! 🎜
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn