在正则表达式中 \xhh 与 \x{hh} 相同吗?
在正则表达式中似乎是相同的:
if(preg_match('/\x{61}/',"a",$m)) //Same as just \x61
print_r($m);
但是如果你将 echo 两者分开。
echo "\x61";//Display a
echo "\x{61}";//Display \x{61}
注意:不要与 '/\x{0000}/u'
混淆,
我没有看到相关信息,也不确定使用哪个。
Within a regex seems that it is the same:
if(preg_match('/\x{61}/',"a",$m)) //Same as just \x61
print_r($m);
But if you make echo both apart.
echo "\x61";//Display a
echo "\x{61}";//Display \x{61}
Note: Not confuse with the '/\x{0000}/u'
I don't see info about that and I'm not sure which to use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PCRE有自己的转义规则,与php中的不同。来自 http://www.pcre.org/pcre.txt
pcre has its own escape rules, which are different from those in php. From http://www.pcre.org/pcre.txt