如果数组中存在多个键,是否可以一次性检查,而不是array_key_exists
多次使用该函数?或者,这可以通过其他方式实现吗?
<?php
$search_array = array('first' => 1, 'second' => 4);
if(array_key_exists('first','second' $search_array))//Do something like this.
{
echo "The 'first' element is in the array";
}
?>