php檢查陣列下標是否存在

2020-07-16 10:05:44

PHP檢查陣列下標是否存在的方法

array_key_exists()函數

array_key_exists()函數判斷某個陣列中是否存在指定的 key,如果該 key 存在,則返回 true,否則返回 false。

語法:

array_key_exists(key,array)

引數描述:

key 必需。規定鍵名。

array 必需。規定輸入的陣列。

範例:

<?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視訊教學

以上就是php檢查陣列下標是否存在的詳細內容,更多請關注TW511.COM其它相關文章!