28 lines
339 B
Plaintext
28 lines
339 B
Plaintext
|
|
--TEST--
|
||
|
|
ZE2 The inherited destructor is called
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
class base {
|
||
|
|
function __construct() {
|
||
|
|
echo __METHOD__ . "\n";
|
||
|
|
}
|
||
|
|
|
||
|
|
function __destruct() {
|
||
|
|
echo __METHOD__ . "\n";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
class derived extends base {
|
||
|
|
}
|
||
|
|
|
||
|
|
$obj = new derived;
|
||
|
|
|
||
|
|
unset($obj);
|
||
|
|
|
||
|
|
echo 'Done';
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
base::__construct
|
||
|
|
base::__destruct
|
||
|
|
Done
|