array_search函数用于在数组中搜索给定的值,并返回对应的键。在关联数组中,可以使用array_search函数来查找特定值对应的键。
以下是一个示例:
$fruits = array(
'apple' => 'red',
'banana' => 'yellow',
'orange' => 'orange',
'grape' => 'purple'
);
$key = array_search('orange', $fruits);
echo "The key for 'orange' is: " . $key; // 输出:The key for 'orange' is: orange
在上面的示例中,我们创建了一个关联数组$fruits,然后使用array_search函数查找值为’orange’的键。最后,我们输出了找到的键。