语法:int preg_match_all ( string pattern, string subject, array &matches [, int flags] ) 这个函数的返回值是整个pattern匹配到的结果数量. matches(注意这里是引用)是一个二维数组,matches[0] 是整个pattern匹配的结果.matches[1] 是第一个子模式(正则表达式中的子模式,就是圆括号括起来的部分)匹配的结果,matches[2]是 第二个子模式的匹配结果,依次推matches[N…