38 lines
875 B
PHP
38 lines
875 B
PHP
--TEST--
|
|
Bug #48476 (cloning extended DateTime class without calling parent::__constr crashed PHP)
|
|
--FILE--
|
|
<?php
|
|
class MyDateTime extends DateTime {
|
|
public function __construct() { }
|
|
}
|
|
class MyDateTimeZone extends DateTimeZone {
|
|
public function __construct() { }
|
|
}
|
|
|
|
$o = new MyDateTime;
|
|
try {
|
|
var_dump($o->format("d"));
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
$x = clone $o;
|
|
|
|
try {
|
|
var_dump($x->format("d"));
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
clone $o;
|
|
|
|
try {
|
|
var_dump(timezone_location_get(clone new MyDateTimezone));
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
The DateTime object has not been correctly initialized by its constructor
|
|
The DateTime object has not been correctly initialized by its constructor
|
|
The DateTimeZone object has not been correctly initialized by its constructor
|