例如,我有这样的文字:
<content>Foo</content>This is only a <b>test</b><content>Bar</content>Again, only a test.
如何创建包含两个条目的数组Foo
和Bar
?
答案 0 :(得分:3)
preg_match_all("/<content>(.+?)<\/content>/is", $string, $matches);
您的结果将被放入$matches
数组中。
使用$matches[0]
,$matches[1]
访问它们,依此类推。
编辑:preg_match_all()
将为您提供所有结果!感谢@Blake的提示。