$str = "<p><example:wow id='test' style='hello' /></p>";
preg_match_all ("/<example:wow(.*)[^>]>/", $str, $matches);
我的 $matches[0] 说那里有数据(字符串长度 43)但屏幕上没有字符串输出。
数组(1){[0]=>字符串(43)“”}
如果我删除<
单词 example 之前的 from:我可以在 $matches[0] 上看到输出。为什么我没有真正得到 $matches[0] 的字符串值<
?无论哪种情况,我的 $matches[1] 都很好,但我需要捕获所有 $matches[0]。