标签: php preg-match
我有简单的preg_match函数
preg_match_all("|[<img] [a-z0-9]+ [ >]|", "<img test1 > <img test2 >", $matches );
我想在输出中看到所有两个单词,但是$ matchs具有g test1 >和g test2 >
g test1 >
g test2 >
为什么使用g和>?
g
>