PHP - array_key_exists() 函数



语法

bool array_key_exists ( $key, $array );

定义和用法

如果给定的数组中已设置,则返回 TRUE。

参数

序号 参数及说明
1

key (必填)

要搜索的键。

2

array (必填)

要搜索的数组

返回值

如果给定的键在数组中已设置,则返回 TRUE,否则返回 FALSE。

示例

尝试以下示例:

<?php
   $input = array('first' => 10, 'second' => 400);
   
   if (array_key_exists('first', $input)) {
      echo "The 'first' element is in the array";
   }
?> 

这将产生以下结果:

The 'first' element is in the array
php_function_reference.htm
广告