1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/reflection/tests/reflectionClass_getExtension_basic.phpt
2008-05-27 13:16:27 +00:00

16 lines
335 B
PHP

--TEST--
ReflectionClass::getExtension() method - basic test for getExtension() method
--CREDITS--
Rein Velt <rein@velt.org>
#testFest Roosendaal 2008-05-10
--FILE--
<?php
$rc=new reflectionClass('domDocument');
var_dump($rc->getExtension()) ;
?>
--EXPECTF--
object(ReflectionExtension)#%d (1) {
[u"name"]=>
unicode(3) "dom"
}