ReflectionClass_getExtensionName_basic.phpt 314 B

1234567891011121314
  1. --TEST--
  2. ReflectionClass::getExtensionName() method - basic test for getExtensionName() method
  3. --EXTENSIONS--
  4. dom
  5. --CREDITS--
  6. Rein Velt <rein@velt.org>
  7. #testFest Roosendaal 2008-05-10
  8. --FILE--
  9. <?php
  10. $rc=new reflectionClass('domDocument');
  11. var_dump( $rc->getExtensionName()) ;
  12. ?>
  13. --EXPECT--
  14. string(3) "dom"