标签:ar sp bs tt php nbsp c 字符串 函数
$str = array(‘2000年10月10日‘,‘2001年11月11日‘);
$pattern = array(‘/年/‘,‘/月/‘,‘/日/‘);
$replacement = array(‘-‘,‘-‘,‘‘);
$time = preg_replace($pattern,$replacement,$str) ;
print_r($time);exit;
打印结果 Array ( [0] => 2000-10-10 [1] => 2001-11-11 )
PHP preg_replace函数 替换字符串或者数组内多个内容
标签:ar sp bs tt php nbsp c 字符串 函数
原文地址:http://www.cnblogs.com/yalibuxiao/p/4079815.html