带有html标记的php正则表达式preg_match

时间:2015-09-14 06:10:53

标签: php regex preg-match

我写了一些简单的代码

$test='<span class="h2">AAAA</span> <div>aaaa</div> <p>ccc</p>';
preg_match('<\<(.*)>',$test,$matches);
echo $matches[0]

结果是:

  

AAAA

     

AAAA

     

CCC

我无法理解为什么$ matches [0]会是这样的。

有人可以解释一下吗?

感谢。

0 个答案:

没有答案