Home > Backend Development > PHP Tutorial > php转化字符串格式 求大神支招一个高效的方法

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

WBOY
Release: 2016-06-06 20:37:19
Original
838 people have browsed it

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

回复内容:

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

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

str_replace
explode也可以吧

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template