blob: 84e38b080207e65bed214a5b1efa0ec736b42627 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | --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"
 |