84669 人学习
152542 人学习
20005 人学习
5487 人学习
7821 人学习
359900 人学习
3350 人学习
180660 人学习
48569 人学习
18603 人学习
40936 人学习
1549 人学习
1183 人学习
32909 人学习
$zz = '/this\b/';
$string1 = "this is a apple";
$string2 = "thisis a apple";
$string3 = "thisartrapple";
if (preg_match($zz, $string3, $matches)) {
echo '匹配到了,结果为:';
var_dump($matches);
} else {
echo '没有匹配到';
}
?>
php
this后面加个空格,或者thisartrapple改为artrapplethis
this后面加个空格,或者thisartrapple改为artrapplethis