summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/013.phpt
blob: 564cf1b7a4a13bedb9bb86c59c36d1e59c334a2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--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