gpt4 book ai didi

PHP preg_match 使弯撇号与其他类型的弯引号不匹配。如何避免?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:08:21 25 4
gpt4 key购买 nike

我有以下变量内容:

$content_content = '“我做不到,她说。”';

我想为其中的每个“单词”做一个 preg_match,包括缩写,所以我按如下方式使用 preg_match:

 if (preg_match_all('/([a-zA-Z0-9’]+)/', $content_content, $matches))
{
echo '<pre>';
print_r($matches);
echo '</pre>';
}

但是,似乎通过在正则表达式中包含 ’,它也包含了双引号,如上面的命令输出:

Array
(
[0] => Array
(
[0] => ��
[1] => I
[2] => can’t
[3] => do
[4] => it
[5] => she
[6] => said
[7] => ��
)

[1] => Array
(
[0] => ��
[1] => I
[2] => can’t
[3] => do
[4] => it
[5] => she
[6] => said
[7] => ��
)

)

如何在不包含“和”的情况下包含 ’?

最佳答案

这是因为您在字符集中使用的“奇特”撇号是以二进制形式处理的;您需要使用其各自的 modifier 启用 Unicode 模式:

preg_match_all('/([a-zA-Z0-9’]+)/u', $content_content, $matches)

Demo

关于PHP preg_match 使弯撇号与其他类型的弯引号不匹配。如何避免?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27264053/

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