mirror of
https://github.com/php/php-src.git
synced 2025-01-13 14:34:48 +08:00
15 lines
269 B
PHP
15 lines
269 B
PHP
--TEST--
|
|
ReflectionExtension::getName()
|
|
--CREDITS--
|
|
Gerrit "Remi" te Sligte <remi@wolerized.com>
|
|
Leon Luijkx <leon@phpgg.nl>
|
|
--FILE--
|
|
<?php
|
|
$obj = new ReflectionExtension('reflection');
|
|
var_dump($obj->getName());
|
|
?>
|
|
==DONE==
|
|
--EXPECT--
|
|
string(10) "Reflection"
|
|
==DONE==
|