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 >
Text File  |  2000-07-30  |  259b  |  17 lines

  1. <?php // -*- C++ -*-
  2.  
  3. require_once "PEAR.php";
  4.  
  5. class __TestPEAR1 extends PEAR {
  6.     function __TestPEAR1() {
  7.     $this->_debug = true;
  8.     $this->PEAR();
  9.     }
  10. }
  11.  
  12. print "test class __TestPEAR1\n";
  13. $o = new __TestPEAR1;
  14. var_dump(get_class($o));
  15.  
  16. ?>
  17.