Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想以2013 年 9 月 26 日星期四的以下格式获取日期。
日期的名称应该像星期一那样完整,而不是像 Mon 一样,并且对于月份格式相同。
如何获得这种格式?
使用php日期函数如下。
echo date('l,F d,Y',strtotime($date));
Date Format
我得到了这样的方式
$mydate=getdate(date("U")); echo "$mydate[weekday], $mydate[month] $mydate[mday], $mydate[year]";
或者
$today = date(DATE_RFC822); echo date('l,F d,Y',strtotime($today));