欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php正则之函数 preg_replace()参数说明

程序员文章站 2022-06-22 14:55:10
preg_replace 字符串比对解析并取代。  语法: mixed preg_replace(mixed pattern,&nb...
preg_replace
字符串比对解析并取代。 
语法: mixed preg_replace(mixed pattern, mixed replacement, mixed subject); 
返回值: 混合类型资料 
函数种类: 资料处理 
内容说明 
本函数以 pattern 的规则来解析比对字符串 subject,欲取而代之的字符串为参数 replacement。返回值为混合类型资料,为取代后的字符串结果。 
使用范例 
下例返回值为 $startdate = 6/19/1969
复制代码 代码如下:

<?php 
$patterns = array("/(19|20\d{2})-(\d{1,2})-(\d{1,2})/", "/^\s*{(\w+)}\s*=/"); 
$replace = array("\\3/\\4/\\1", "$\\1 ="); 
print preg_replace($patterns, $replace, "{startdate} = 1969-6-19"); 
?>