home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2001 August
/
PCWorld_2001-08_cd.bin
/
Komunikace
/
phptriad
/
phptriadsetup2-11.exe
/
php
/
pear
/
tests
/
PEAR.t
< prev
next >
Wrap
Text File
|
2000-07-30
|
259b
|
17 lines
<?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));
?>