实际格式2015-12-16T00:00:00Z
我需要像
结果格式:2015-12-16 00:00:00
我试过这段代码 $ CC = str_replace函数( “T”, '',2015-12-16T00:00:00Z);
答案 0 :(得分:1)
使用 str_replace :
$cc = str_replace('Z', '', str_replace('T', ' ', '2015-12-16T00:00:00Z'));
OR
使用 preg_replace :
$cc = preg_replace(array('/T/', '/Z/'), array(' ', ''), '2015-12-16T00:00:00Z');