mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +08:00
15 lines
378 B
PHP
15 lines
378 B
PHP
--TEST--
|
|
ReflectionClass::getExtensionName() method - basic test for getExtensionName() method
|
|
--SKIPIF--
|
|
<?php extension_loaded('dom') or die('skip - dom extension not loaded'); ?>
|
|
--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"
|