码迷,mamicode.com
首页 > 编程语言 > 详细

PHP preg_replace函数 替换字符串或者数组内多个内容

时间:2014-11-06 21:32:32      阅读:130      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!