PHP日期格式

时间:2010-11-19 04:59:11

标签: php

Tue Oct 26 10:39:39 +0000 2010

如何将格式转换为2010-10-26

3 个答案:

答案 0 :(得分:8)

echo date('Y-m-d', strtotime("Tue Oct 26 10:39:39 +0000 2010"))
// 2010-10-26

答案 1 :(得分:0)

echo date('Y-m-d');

答案 2 :(得分:0)

使用DateTime对象:

echo date_format(new DateTime('Tue Oct 26 10:39:39 +0000 2010'), 'Y-m-d');

或:

$date = new DateTime('Tue Oct 26 10:39:39 +0000 2010');
echo $date->format('Y-m-d');