gpt4 book ai didi

php - 如何比较数组中的字符串匹配?

转载 作者:可可西里 更新时间:2023-10-31 23:20:17 26 4
gpt4 key购买 nike

$array = ('Home', 'Design', 'Store');
$str = 'home';
if (in_array($str, $array)) {
die("Match");
} else {
die("No Match");
}

Result is "No Match"=> 如何将其修复为 "Match"?

最佳答案

如 Mike K 所述,in_array() 区分大小写,因此您可以将每个数组元素和指针的大小写更改为小写(例如):

function in_array_case_insensitive($needle, $array) {
return in_array( strtolower($needle), array_map('strtolower', $array) );
}

Demo

关于php - 如何比较数组中的字符串匹配?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24236424/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com