summaryrefslogtreecommitdiff
path: root/pear/tests/pear1.phpt
blob: 07b737f5bcc3fbe97ce1c9a77782d8dbf4091135 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
--TEST--
PEAR constructor/destructor test
--SKIPIF--
--FILE--
<?php

require_once "PEAR.php";

class TestPEAR extends PEAR {
    function TestPEAR($name) {
	$this->_debug = true;
	$this->name = $name;
	$this->PEAR();
    }
    function _TestPEAR() {
	print "This is the TestPEAR($this->name) destructor\n";
	$this->_PEAR();
    }
}

class Test2 extends PEAR {
    function _Test2() {
        print "This is the Test2 destructor\n";
	$this->_PEAR();
    }
}

class Test3 extends Test2 {
}

print "testing plain destructors\n";
$o = new TestPEAR("test1");
$p = new TestPEAR("test2");
print "..\n";
print "testing inherited destructors\n";
$q = new Test3;

print "..\n";
print "script exiting...\n";
print "..\n";

?>
--GET--
--POST--
--EXPECT--
testing plain destructors
PEAR constructor called, class=testpear
PEAR constructor called, class=testpear
..
testing inherited destructors
..
script exiting...
..
This is the TestPEAR(test1) destructor
PEAR destructor called, class=testpear
This is the TestPEAR(test2) destructor
PEAR destructor called, class=testpear
This is the Test2 destructor