isset PHP可以判断数组键值存在吗

avatar
作者
筋斗云
阅读量:0

是的,PHP中的isset函数可以判断一个数组键值是否存在。如果键值存在且不为null,则isset函数会返回true;反之,如果键值不存在或为null,则返回false。示例如下:

$array = array("key1" => "value1", "key2" => "value2");  if(isset($array["key1"])) {     echo "Key 'key1' exists in the array"; } else {     echo "Key 'key1' does not exist in the array"; }  if(isset($array["key3"])) {     echo "Key 'key3' exists in the array"; } else {     echo "Key 'key3' does not exist in the array"; } 

在上面的示例中,如果数组$array中存在"key1"这个键值,则会输出"Key ‘key1’ exists in the array";如果数组$array中不存在"key3"这个键值,则会输出"Key ‘key3’ does not exist in the array"。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!