1234567891011121314151617 |
- --TEST--
- ReflectionClass::getExtension() method - basic test for getExtension() method
- --EXTENSIONS--
- dom
- --CREDITS--
- Rein Velt <rein@velt.org>
- --FILE--
- <?php
- $rc=new reflectionClass('domDocument');
- var_dump($rc->getExtension()) ;
- ?>
- --EXPECTF--
- object(ReflectionExtension)
- ["name"]=>
- string(3) "dom"
- }
|