實例
檢查鍵名"Volvo" 是否存在於陣列中:
<?php $a=array("Volvo"=>"XC90","BMW"=>"X5"); if (array_key_exists("Volvo",$a)) { echo "Key exists!"; } else { echo "Key does not exist!"; } ?>
定義與用法
array_key_exists() 函數檢查某個陣列中是否存在指定的鍵名,如果鍵名存在則傳回true,如果鍵名不存在則傳回false。
提示:請記住,如果您指定數組的時候省略了鍵名,將會產生從 0 開始並以 1 遞增的整數鍵名。 (參閱實例2)
語法
array_key_exists(key,array)
#參數 | ##描述|
必需。規定鍵名。 | |
必要。規定數組。 |
如果鍵名存在則傳回TRUE,如果鍵名不存在則傳回FALSE。 | |
4.0.7+ |
實例1
檢查鍵名"Toyota" 是否存在於陣列中:
<?php $a=array("Volvo"=>"XC90","BMW"=>"X5"); if (key_exists("Toyota",$a)) { echo "Key exists!"; } else { echo "Key does not exist!"; } ?>
實例2
檢查整數鍵名稱"0" 是否存在於陣列中:
<?php $a=array("Volvo","BMW"); if (array_key_exists(0,$a)) { echo "Key exists!"; } else { echo "Key does not exist!"; } ?>
範例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!
<?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 exist!
<?php $a=array("Dog",Cat"); if (array_key_exists(0,$a)) { echo "Key exists!"; } else { echo "Key does not exist!"; } ?>
Key exists!
#
以上是php檢查指定的鍵名是否存在於陣列中的函數array_key_exists()的詳細內容。更多資訊請關注PHP中文網其他相關文章!