What is the preg_match_all `u` flag dependent on?(PREG_MATCH_ALL`u‘标志依赖于什么?)
本文介绍了PREG_MATCH_ALL`u‘标志依赖于什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在一个PHP应用程序中有一些代码,当我尝试在生产服务器上使用它时,它返回空值,但它在开发服务器上运行得很好。以下是代码行:
// use the regex unicode support to separate the UTF-8 characters into an array
preg_match_all( '/./us', $str, $match );
u
标志依赖于什么?我在启用和禁用mb_string
的情况下进行了测试,这似乎不会影响它。
我收到的错误是
preg_match_all: Compilation failed: unknown option bit(s) set at offset -1
更多信息
这是生产服务器上的选项之一:
'--with-pcre-regex=/opt/pcre'
这里是PCRE部分
我相信这就是@Wesley所指的便条:
In order process UTF-8 strings, you must build PCRE to include UTF-8
support in the code, and, in addition, you must call pcre_compile()
with the PCRE_UTF8 option flag, or the pattern must start with the
sequence (*UTF8). When either of these is the case, both the pattern
and any subject strings that are matched against it are treated as
UTF-8 strings instead of strings of 1-byte characters.
有关于如何"构建包含UTF-8的PCRE"的链接或提示吗?
via
pcretest -C
PCRE version 6.6 06-Feb-2006
Compiled with
UTF-8 support
Unicode properties support
Newline character is LF
Internal link size = 2
POSIX malloc threshold = 10
Default match limit = 10000000
Default recursion depth limit = 10000000
Match recursion uses stack
推荐答案
此标志取决于在启用Unicode支持的情况下生成的PCRE。
PHP捆绑了此库,并且它通常是在启用Unicode支持的情况下构建的:u
修饰符可用,并且从PHP 4.1.0开始始终有效,当PHP使用捆绑的PCRE库构建时。
然而,一些Linux发行版基于其自己的PCRE版本构建PHP,而PCRE没有启用Unicode支持,因此u
修饰符在这些版本上不起作用。
解决方案是使用替代的PHP包。
这篇关于PREG_MATCH_ALL`u‘标志依赖于什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:PREG_MATCH_ALL`u‘标志依赖于什么?
基础教程推荐
猜你喜欢
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01