PHP 匹配单词代码在 php 5.1.6 上不起作用

发布于 2024-09-08 21:14:32 字数 382 浏览 9 评论 0原文

我有一段代码在本地测试服务器上运行良好,但由于某种原因在实时服务器上运行不佳。 实时服务器上的 PHP 版本是 5.1.6。

$subject = 'random words to check';   
$terms = explode(' ', 'word1 word2 check');
$wordIndex = array_flip(preg_split('/\P{L}+/u', mb_strtolower($subject), -1, PREG_SPLIT_NO_EMPTY));
foreach ($terms as $term) {
    if (isset($wordIndex[$term])) {
        echo "match>".$term;
    }
}

i have piece of code that works fine on my local test server but on live server for some reason it does not.
Php version on live server is 5.1.6.

$subject = 'random words to check';   
$terms = explode(' ', 'word1 word2 check');
$wordIndex = array_flip(preg_split('/\P{L}+/u', mb_strtolower($subject), -1, PREG_SPLIT_NO_EMPTY));
foreach ($terms as $term) {
    if (isset($wordIndex[$term])) {
        echo "match>".$term;
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黎歌 2024-09-15 21:14:32

首先使用一些基本的调试来发现每个系统上发生的情况

  • dump mb_strtolower 的输出
  • dump preg_split 的输出
  • dump array_flip 的输出

First employ some basic debugging to discover what's happening on each system

  • dump the output of mb_strtolower
  • dump the output of preg_split
  • dump the output of array_flip
剧终人散尽 2024-09-15 21:14:32

您可以尝试将 preg_split 替换为

$wordIndex = array_flip(str_word_count(mb_strtolower($subject), 2));

虽然如果您正在使用多字节字符串,则可能还需要 str_word_count 的附加第三个参数

You might try replacing your preg_split with

$wordIndex = array_flip(str_word_count(mb_strtolower($subject), 2));

Though you may also need the additional 3rd parameter for str_word_count if you're working with multibyte strings

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文