key_exists() 函數是 PHP 中的內置函數,用於檢查給定的鍵是否存在於給定的數組中。如果給定的鍵存在於數組中,則返回 true,否則返回 false。該函數是array_key_exists()函數的別名。
用法:
bool key_exists(string|int $key, array $array)
參數:該函數接受兩個參數,如下所述:
- $key:該參數保存我們要在數組中檢查的鍵。
- $array:該參數保存數組。
返回值:該函數返回一個布爾值 TRUE 或 FALSE,分別取決於鍵是否存在於數組中。
示例 1:
PHP
<?php
$arr = array(5, 10, 15, 20, 25);
$key = 3;
if(key_exists($key, $arr)) {
echo "Key Found \n";
}
else {
echo "Key Not Found \n";
}
$arr1 = array(1.1, 2.3, 1.8, 2.07, 1.25);
$key1 = 8;
if(key_exists($key1, $arr1)) {
echo "Key Found";
}
else {
echo "Key Not Found";
}
?>
輸出:
Key Found Key Not Found
示例 2:
PHP
<?php
$arr = array(
"Geeks" => 10,
"GFG" => 60,
"G4G" => 80,
"Geek" => 100
);
$key = "GFG";
if(key_exists($key, $arr)) {
echo "GFG Key Found \n";
}
else {
echo "GFG Key Not Found \n";
}
$key1 = "Welcome";
if(key_exists($key1, $arr)) {
echo "Welcome Key Found";
}
else {
echo "Welcome Key Not Found";
}
?>
輸出:
GFG Key Found Welcome Key Not Found
參考: https://www.php.net/manual/en/function.key-exists.php
相關用法
- PHP key_exists()用法及代碼示例
- PHP key()用法及代碼示例
- PHP krsort()用法及代碼示例
- PHP ksort()用法及代碼示例
- PHP Hebrev()用法及代碼示例
- PHP Max()用法及代碼示例
- PHP String htmlspecialchars()用法及代碼示例
- PHP String htmlspecialchars_decode()用法及代碼示例
- PHP String localeconv()用法及代碼示例
- PHP String nl2br()用法及代碼示例
- PHP String nl_langinfo()用法及代碼示例
- PHP String quoted_printable_decode()用法及代碼示例
- PHP String quoted_printable_encode()用法及代碼示例
- PHP String sprintf()用法及代碼示例
- PHP String sscanf()用法及代碼示例
- PHP String str_replace()用法及代碼示例
- PHP String strrpos()用法及代碼示例
- PHP String strspn()用法及代碼示例
- PHP String strstr()用法及代碼示例
- PHP String strtok()用法及代碼示例
- PHP String strtolower()用法及代碼示例
- PHP String strtoupper()用法及代碼示例
- PHP String strtr()用法及代碼示例
- PHP String substr()用法及代碼示例
- PHP String substr_compare()用法及代碼示例
注:本文由純淨天空篩選整理自vkash8574大神的英文原創作品 PHP key_exists() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。