php-src/tests/classes/destructor_and_echo.phpt

25 lines
287 B
Plaintext
Raw Normal View History

--TEST--
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