我们如何在php中格式化时间,就像我们使用mysql的date_format一样?
在mySql中,我们执行date_format(now(),'%M %e, %Y') as time
。可以将php的当前时间格式化为2013年1月3日吗?
答案 0 :(得分:1)
是。查看PHP date。
echo date('F j, Y', time());
答案 1 :(得分:0)
代码是:
date("Y-m-d",strtotime(date()))
更多信息on the date() function和some information on the strtotime() function