php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #78966 strtotime transform error with
Submitted: 2019-12-16 08:06 UTC Modified: 2022-07-22 16:42 UTC
Votes:1
Avg. Score:4.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: jackyxie007 at gmail dot com Assigned: derick (profile)
Status: Closed Package: Date/time related
PHP Version: Irrelevant OS: Linux Ubuntu 4.4.0-151-generic
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: jackyxie007 at gmail dot com
New email:
PHP Version: OS:

 

 [2019-12-16 08:06 UTC] jackyxie007 at gmail dot com
Description:
------------
With decimal length of 9 digits after the Datetime string(Eg: 2019-12-15T17:51:38.948471000Z), strtotime return false.

Test script:
---------------
<?php

$str = '2019-12-15T17:51:38.948471000Z';
var_dump(strtotime($str));

Expected result:
----------------
int(1576432298)

Actual result:
--------------
bool(false)

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2019-12-16 09:41 UTC] cmb@php.net
-Status: Open +Status: Verified
 [2019-12-16 09:41 UTC] cmb@php.net
Behavior confirmed: <https://3v4l.org/G8fdq>.

The documentation[1] doesn't mention any restriction on the number
of fractional digits, so this is either an implementation or a
documentation bug.

[1] <https://www.php.net/manual/en/datetime.formats.compound.php>
 [2020-01-20 17:10 UTC] girgias@php.net
-Assigned To: +Assigned To: derick
 [2020-01-20 17:10 UTC] girgias@php.net
Assigning derick to confirm if it's an implementation bug or a doc bug.
 [2022-07-22 16:42 UTC] derick@php.net
-Status: Verified +Status: Closed
 [2022-07-22 16:42 UTC] derick@php.net
Thank you for your bug report. This issue has already been fixed
in the latest released version of PHP, which you can download at
http://www.php.net/downloads.php

This was fixed in PHP 8.0 already.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun Dec 22 02:01:28 2024 UTC