/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/date/tests/DateInterval_uninitialised_exceptions.phpt
30 строк
752 B
Derick Rethans
Implement More Appropriate Date/Time Exceptions RFC
08 фев 2023, 13:27
08 фев 2023, 13:27
b7860cd
Код
Авторство
О чём код?
--TEST-- DateInterval uninitialised exceptions --INI-- date.timezone=Europe/London --FILE-- <?php class MyDateInterval extends DateInterval { function __construct() { } } function check(callable $c) { try { var_dump($c()); } catch (\DateObjectError $e) { echo $e::class, ': ', $e->getMessage(), "\n"; } } $mdi = new MyDateInterval(); check(fn() => serialize($mdi)); check(fn() => $mdi->format("Y-m-d")); ?> --EXPECTF-- DateObjectError: Object of type MyDateInterval (inheriting DateInterval) has not been correctly initialized by calling parent::__construct() in its constructor DateObjectError: Object of type MyDateInterval (inheriting DateInterval) has not been correctly initialized by calling parent::__construct() in its constructor