mirror of
https://github.com/php/php-src.git
synced 2025-01-18 17:54:05 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
27 lines
382 B
PHP
27 lines
382 B
PHP
--TEST--
|
|
ZE2 Ensuring destructor visibility
|
|
--FILE--
|
|
<?php
|
|
|
|
class Base {
|
|
private function __destruct() {
|
|
echo __METHOD__ . "\n";
|
|
}
|
|
}
|
|
|
|
class Derived extends Base {
|
|
public function __destruct() {
|
|
echo __METHOD__ . "\n";
|
|
}
|
|
}
|
|
|
|
$obj = new Derived;
|
|
|
|
unset($obj); // Derived::__destruct is being called not Base::__destruct
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
Derived::__destruct
|
|
===DONE===
|