共计 343 个字符,预计需要花费 1 分钟才能阅读完成。
在 PHP 中,可以使用 array_search() 函数来搜索给定的值在数组中的位置。示例如下:
$fruits = array("apple", "banana", "orange", "pear");
$key = array_search("orange", $fruits);
if($key !== false){echo "The key of 'orange' in the array is: " . $key;
} else {echo "'orange' is not found in the array.";
}
上述代码将输出:The key of‘orange’in the array is: 2。这表示在数组 $fruits 中,值为 "orange" 的元素在索引位置 2 上。
丸趣 TV 网 – 提供最优质的资源集合!
正文完