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