凤凰求蛊
preg_match 匹配到一次就会停止,设置匹配到的一个匹配preg_match_all 会一直匹配下去。直到字符串结束,设置匹配到的所有匹配例如:$str = "abc,abc,abc";preg_match('|\w+|', $str, $out);$out 是Array([0] => abc[1] => abc)preg_match_all('|\w+|', $str, $out);$out 是Array([0] => Array([0] => abc[1] => abc[2] => abc)[1] => Array([0] => abc[1] => abc[2] => abc))