这是我的字符串星期二,2013年8月20日10:45:05 我希望这个字符串在日期格式中像这样:
2013年8月20日
伙计们请帮帮忙。
由于
答案 0 :(得分:1)
这样的事情:
echo date('Y-m-d', strtotime('Tue, 20 Aug 2013 10:45:05'));
答案 1 :(得分:0)
试试这个,
$d=date('Y-m-d',strtotime('Tue, 20 Aug 2013 10:45:05'));
echo $d;