gpt4 book ai didi

php in_array 多字节等价物

转载 作者:行者123 更新时间:2023-12-04 13:04:27 34 4
gpt4 key购买 nike

in_array() php多字节安全功能?

如果没有,我怎样才能做到这一点?

php.net 多字节引用列表 mb_stristr()但它接受一个字符串,而不是像 haystack 那样的数组。

我的 haystack = array字符串和 needle = string .

最佳答案

由于我找不到任何内置的 PHP 解决方案,我按照@FirstOne 的建议做了。

/**
* @return bool true if needle is found in haystack, false otherwise
*/
public function custom_mb_in_array($_needle, array $_hayStack) {
foreach ($_hayStack as $value) {
if (mb_strtolower($value) === mb_strtolower($_needle)) {
return true;
}
}
return false;
}

关于php in_array 多字节等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38352528/

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