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.
我正在建立一个RSS提要。
我需要输出一个日期,我传递了一个 date_format 函数可以理解的日期,但我不确定如何格式化日期以使其符合 RFC 822 标准。
我需要输出这样的日期:Tue, 10 Jun 2003 09:41:01 GMT
我应该使用什么格式,或者是否有其他修饰符?
来自DateTime 的 PHP 文档:
const string RFC822 = "D, d M y H:i:s O" ;
对应的 Smarty 字符串应该是"%a, %d %b %Y %H:%M:%S %z".
"%a, %d %b %Y %H:%M:%S %z"