mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
25 lines
291 B
PHP
25 lines
291 B
PHP
--TEST--
|
|
ZE2 Destructors and echo
|
|
--FILE--
|
|
<?php
|
|
|
|
class Test
|
|
{
|
|
function __construct() {
|
|
echo __METHOD__ . "\n";
|
|
}
|
|
|
|
function __destruct() {
|
|
echo __METHOD__ . "\n";
|
|
}
|
|
}
|
|
|
|
$o = new Test;
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
Test::__construct
|
|
===DONE===
|
|
Test::__destruct
|