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

14 lines
257 B
PHP
Executable File

--TEST--
ReflectionExtension::getFunctions()
--SKIPIF--
<?php extension_loaded('reflection') or die('skip'); ?>
--FILE--
<?php
$ext = new ReflectionExtension("standard");
$funcs = $ext->getFunctions();
echo $funcs["sleep"]->getName();
?>
--EXPECT--
sleep