php-src/ext/reflection/tests/019.phpt
2007-04-12 12:43:54 +00:00

14 lines
271 B
PHP
Executable File

--TEST--
ReflectionFunction::getExtensionName
--SKIPIF--
<?php extension_loaded('reflection') or die('skip'); ?>
--FILE--
<?php
$f = new ReflectionFunction("sleep");
var_dump($f->getExtensionName());
?>
--EXPECT--
string(8) "standard"
--UEXPECT--
unicode(8) "standard"