在使用“<代码>><>>>/代码”的操作人员时,加上背心,为什么我需要使用“zy匹配”? 似乎如<代码>而不是。 应当打破这种对比。
例如:
<?php
preg_match( /(t)[^1]*1/ , is this test ok , $matches);
echo $matches[0];
?>
<http://codepad.viper-7.com/BPDeLx” rel=“nofollow noreferer”>>>>this test
t t
,尽管中文本<>t 与[^1]
不一致。 我们需要使用>/(t)[^1]*?<1/code>,以便与<编码>相匹配。
而且
preg_match( /t[^t]*t/ , is this test ok , $matches);
正在发生什么,我有什么误解?