一:preg_match函数定义:preg_match() 函数用于进行正则表达式匹配,成功返回 1 ,否则返回 0 。语法int preg_match( string pattern, string subject [, array matches ] )参数描述pattern必需。正则表达式subject需要匹配检索的对象matches可选。存储匹配结果的数组, $matches[0] 将包含与整个模式匹配的文本,$matches[1] 将包含与第一个捕获的括号中的子模式所匹配的文本,以此类推二:ptrg_match_all()定义和用法preg_match_all() 函数用于进行正则表
0536-8800925