preg_replace
字符串比对解析并取代。
语法:mixedpreg_replace(mixedpattern,mixedreplacement,mixedsubject);
返回值:混合类型资料
函数种类:资料处理
内容说明
本函数以pattern的规则来解析比对字符串subject,欲取而代之的字符串为参数replacement。返回值为混合类型资料,为取代后的字符串结果。
使用范例
下例返回值为$startDate=6/19/1969
复制代码 代码如下:
$patterns=array("/(19|20d{2})-(d{1,2})-(d{1,2})/","/^s*{(w+)}s*=/");
$replace=array("3/4/1","$1=");
printpreg_replace($patterns,$replace,"{startDate}=1969-6-19");
?>