gpt4 book ai didi

php - str_ireplace 不适用于非 ASCII 字符

转载 作者:行者123 更新时间:2023-12-03 22:57:28 26 4
gpt4 key购买 nike

我需要在俄语文本中突出显示搜索结果,但是当查询有不​​同的大小写时 str_ireplace() 就不起作用。我已经尝试了我在 manual 中遇到的所有问题,但没有任何效果。这是我尝试过的:

<?php
setlocale (LC_ALL, 'ru_RU');
$query = 'ПрОбЛеМа';
$result = 'Эта проблема нам не знакома.';

$result = str_ireplace($query, "<strong>$query</strong>", $result); // does not work
$result = preg_replace("/($query)/i", '<strong>$1</strong>', $result); // does not work
$result = mb_eregi_replace("$query", "<strong>$query</strong>", $result); // does not work
$result = ext_str_ireplace($query, "<strong>$query</strong>", $result); // from php.net - does not work
$result = highlightStr($result, $query); // from php.net - does not work

?>

有什么办法可以让它发挥作用吗?我在这里越来越绝望。

PHP 5.3.3

最佳答案

如果将“u”(unicode)修饰符添加到 preg_replace,它应该可以工作:

$result = preg_replace("/($query)/ui", '<strong>$1</strong>', $result);

关于php - str_ireplace 不适用于非 ASCII 字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5221947/

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