preg_match: 字符串比对解析。 preg_match_all: 字符串整体比对解析。 preg_replace: 字符串比对解析并取代。 preg_split: 将字符串依指定的规则切开。 preg_match 字符串比对解析。 语法: int preg_match(string pattern, string subject, array [matches]); 返回值: 整数/数组 函数种类: 资料处理 内容说明: 本函数以 pattern 的规则来解析比对字符串 subject。比对结果返回的值放在数组参数 matches 之中,matches[0] 内容就是原字符串 subject、matches[1] 为第一个合乎规则的字符串、matches[2] 就是第二个合乎规则的字符串,余类推。若省略参数 matches,则只是单纯地比对,找到则返回值为 true。 preg_match_all 字符串整体比对解析。 语法: int preg_match_all(string pattern, string subject, array matches, int [order]); 返回值: 整数 函数种类: 资料处理 内容说明: 本函数以 pattern 的规则来整体解析比对字符串 subject。比对结果返回的值放在数组参数 matches 之中,并依顺序值 order 排序。参数 order 的值有 PREG_PATTERN_ORDER 及 PREG_SET_ORDER 二种。若没有 order 值,则系统自动以 PREG_PATTERN_ORDER 代入 order 值中。返回值为合乎比对结果的数目,若没有或错误则返回 false 值。 使用范例 PREG_PATTERN_ORDER 的例子
返回值为
返回值为 <b>example: </b>, example: <div align=left>this is a test</div>, this is a test preg_replace 字符串比对解析并取代。 语法: mixed preg_replace(mixed pattern, mixed replacement, mixed subject); 返回值: 混合类型资料 函数种类: 资料处理 内容说明: 本函数以 pattern 的规则来解析比对字符串 subject,欲取而代之的字符串为参数 replacement。返回值为混合类型资料,为取代后的字符串结果。 使用范例 下例返回值为 $startDate = 6/19/1969
preg_split 将字符串依指定的规则切开。 语法: array preg_split(string pattern, string subject, int [limit]); 返回值: 数组 函数种类: 资料处理 内容说明: 本函数可将字符串依指定的规则分开。切开后的返回值为数组变量。参数 pattern 为指定的规则字符串、参数 subject 则为待处理的字符串、参数 limit 可省略,表示欲处理的最多合乎值。 (责任编辑:admin) |