开发者

stripos returns false when special characters is used

开发者 https://www.devze.com 2023-02-21 00:09 出处:网络
I am using the stripos function to check if a string is located inside another string, ignoring any cases.

I am using the stripos function to check if a string is located inside another string, ignoring any cases.

Here is the problem:

stripos("ø", "Ø")

returns false. While

stripos("Ø", "Ø")

returns true.

As you might see, it looks like the function does NOT do a case-insensitive search in thi开发者_StackOverflow社区s case.

The function has the same problems with characters like Ææ and Åå. These are Danish characters.


Use mb_stripos() instead. It's character set aware and will handle multi-byte character sets. stripos() is a holdover from the good old days when there was only ASCII and all chars were only 1 byte.


You need mb_stripos.


mb_stripos will take care of this.


As the other solutions say, try first with mb_stripos(). But if using this function doesn't help, check the encoding of your php file. Convert it to UTF-8 and save it. That did the trick for me after hours of research.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号