添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
In https://www.php.net/manual/en/class.datetime.php we have const string DateTimeInterface::ISO8601 = "Y-m-d\TH:i:sO" ; The format 0 = Difference to Greenwich time (GMT) without colon between hours and minutes Example: +0200 ( https://www.php.net/manual/en/datetime.format.php ) But the format('c') full date/time define: c ISO 8601 date (added in PHP 5) 2004-02-12T15:19:21+00:00 We can to see that the format is inconsistency, format "c" is not equal to Y-m-d\TH:i:sO it would be 2004-02-12T15:19:21+0000

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

All Comments Changes Git/SVN commits Related reports
[2020-08-26 23:12 UTC] [email protected] -Status: Open +Status: Feedback -Package: Documentation problem +Package: Date/time related
[2020-08-26 23:12 UTC] [email protected]
That's right, 'O' does not have a colon while the timezone offset in 'c' does.
What bug are you reporting?
[2020-08-27 06:51 UTC] pablo at antweb dot es -Status: Feedback +Status: Open
[2020-08-27 06:51 UTC] pablo at antweb dot es
Correctly. 
This is the inconsistency.
Format "c" is a ISO 8601 date and have colon, and DateTimeInterface:ISO8601 = "Y-m-d\TH:i:sO" but does not have colon...
[2020-08-27 06:55 UTC] [email protected] -Status: Open +Status: Not a bug
[2020-08-27 06:55 UTC] [email protected]
https://www.php.net/manual/en/class.datetimeinterface.php#datetime.constants.types
> Note: This format is not compatible with ISO-8601, but is left this way for
> backward compatibility reasons. Use DateTime::ATOM or DATE_ATOM for
> compatibility with ISO-8601 instead.
[2020-08-27 06:57 UTC] pablo at antweb dot es
Amazing!
Mystery solved ... thank you.
[2022-07-22 14:37 UTC] [email protected]
Automatic comment on behalf of derickr
Revision: https://github.com/php/php-src/commit/6ae86c235820aaacfd6f7208fb54cb58212a3fac
Log: Fixed bug #80022: Support ISO 8601 years outside 0000-9999 range better
[2022-07-22 14:37 UTC] [email protected] -Status: Not a bug +Status: Closed