php-8.0.30-src/ext/date/tests/bug60302-002.phpt

14 lines
270 B
PHP

--TEST--
Test for bug #60302: DateTimeImmutable::createFromFormat should new static(), not new self()
--FILE--
<?php
class MyDateTime extends DateTimeImmutable { }
$d = MyDateTime::createFromFormat('Y-m-d', '2011-01-01');
echo get_class($d);
?>
--EXPECT--
MyDateTime