array_key_exists() 檢查給定的鍵名或索引是否存在於數組中
【功能】
該函數將返回一個布爾型值,
如果指定的key存在於指定的數組中則返回true,否則返回false
同時該函數也可以用於對象,即檢查指定的key是否在於對象中
【使用范圍】
php4>4.1.0、php5.
【使用】
bool array_key_exists(mixed key,array search)
key/必需/鍵名
search/必需/查找的數組
【示例】
[php]
<?php
$search_array = array('first'=>1,'second'=>4);
if(array_key_exists('first',$search_array)){
echo "The 'first' element is in the array";
}
/*
The 'first' element is in the array
*/
摘自 zuodefeng的筆記