我们如何像使用 mysql 的 date_format 一样在 php 中格式化时间?
在 mySql 中我们这样做 date_format(now(),'%M %e, %Y') as time
。php 的当前时间可以格式化为 2013 年 1 月 3 日吗?
我们如何像使用 mysql 的 date_format 一样在 php 中格式化时间?
在 mySql 中我们这样做 date_format(now(),'%M %e, %Y') as time
。php 的当前时间可以格式化为 2013 年 1 月 3 日吗?
是的。查看PHP 日期。
echo date('F j, Y', time());