php-src/ext/reflection/tests/ReflectionClass_getExtensionName_basic.phpt
Nikita Popov 39131219e8
Migrate more SKIPIF -> EXTENSIONS (#7139)
This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
2021-06-11 12:58:44 +02:00

14 lines
314 B
PHP

--TEST--
ReflectionClass::getExtensionName() method - basic test for getExtensionName() method
--EXTENSIONS--
dom
--CREDITS--
Rein Velt <rein@velt.org>
#testFest Roosendaal 2008-05-10
--FILE--
<?php
$rc=new reflectionClass('domDocument');
var_dump( $rc->getExtensionName()) ;
?>
--EXPECT--
string(3) "dom"