php转化字符串格式 求大神支招一个高效的方法


如题:2015年2月3日 变成2015-2-3
2015年11月3日 2015-11-3
2015年11月12日 2015-11-12 求支招

php 字符串

巡音ルカ. 9 years, 11 months ago

str_replace
explode也可以吧

死D執政官 answered 9 years, 11 months ago

$str = str_replace(array('年','月','日'),array('-','-',''),$str); 不知道行不行

areorer answered 9 years, 11 months ago

Your Answer