summaryrefslogtreecommitdiff
path: root/tests/classes/destructor_and_echo.phpt
blob: 0a253593a5e323717a4c0c3641a04b5fa9964a90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--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