ru_php/ext/date/tests/gh11854.phpt

20 lines
403 B
PHP

--TEST--
Bug GH-11854 (DateTime:createFromFormat stopped parsing DateTime with extra space)
--INI--
date.timezone=UTC
--FILE--
<?php
$dateTime = DateTime::createFromFormat("D M d H:i:s Y", "Wed Aug 2 08:37:50 2023");
var_dump($dateTime);
?>
--EXPECTF--
object(DateTime)#1 (3) {
["date"]=>
string(26) "2023-08-02 08:37:50.000000"
["timezone_type"]=>
int(3)
["timezone"]=>
string(3) "UTC"
}