PHP W3CDTF 的日期时间类似于 RSS 或 Atom 提要的 1994-11-05T08:15:30-05:00 语法

PHP datetime to W3CDTF like 1994-11-05T08:15:30-05:00 syntax for RSS or Atom feeds

我有 2017-07-23 10:05:50 这样的约会时间,但我需要 2017-07-23T10:05:50-05:00

我试过--

date('Y-m-dTH:i:s', strtotime($old_date)); // Return : 2017-07-23CEST10:26:41

但这无效https://validator.w3.org/feed/docs/error/InvalidW3CDTFDate.html

尝试使用此代码:

date('c', strtotime($old_date));

Class DateTime 有一些预定义的日期时间格式。

也许这可以帮助... http://php.net/manual/en/class.datetime.php