home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Total Network Tools 2002
/
NextStepPublishing-TotalNetworkTools2002-Win95.iso
/
Archive
/
Web Server
/
PHP.EXE
/
pear
/
tests
/
PEAR.t
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-07-30
|
259 b
|
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));
?>