summaryrefslogtreecommitdiff
path: root/pear/tests/PEAR.t
blob: 6c8346adc70176397e2c73d53d4b242d02b6e143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php // -*- C++ -*-

require_once "PEAR.php";

class __TestPEAR1 extends PEAR {
    function __TestPEAR1() {
	$this->_debug = true;
	$this->PEAR();
    }
}

print "test class __TestPEAR1\n";
$o = new __TestPEAR1;
var_dump(get_class($o));

?>