mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +08:00
14 lines
257 B
PHP
14 lines
257 B
PHP
--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
|
|
|