Regular Expression
最常用的
preg_match_all
说明
搜索$subject中所有匹配$pattern给定正则表达式 的匹配结果并且将它们以$flag指定顺序输出到$matches中.
搜索subject中所有匹配pattern给定正则表达式 的匹配结果并且将它们以flags指定顺序输出到matches中.
申报 preg_match_all
int preg_match_all ( string $pattern , string $subject , array &$matches [, int $flags ] [, int $offset ] )