在php中格式化时间,如mysql的date_format

时间:2013-01-03 14:30:01

标签: php

我们如何在php中格式化时间,就像我们使用mysql的date_format一样?

在mySql中,我们执行date_format(now(),'%M %e, %Y') as time。可以将php的当前时间格式化为2013年1月3日吗?

2 个答案:

答案 0 :(得分:1)

是。查看PHP date

echo date('F j, Y', time());

答案 1 :(得分:0)

代码是:

date("Y-m-d",strtotime(date()))

更多信息on the date() functionsome information on the strtotime() function