![]() ![]() | ![]() |
1.1 ! misho 1: --TEST-- ! 2: ReflectionExtension::getFunctions() ! 3: --SKIPIF-- ! 4: <?php extension_loaded('reflection') or die('skip'); ?> ! 5: --FILE-- ! 6: <?php ! 7: $ext = new ReflectionExtension("standard"); ! 8: $funcs = $ext->getFunctions(); ! 9: echo $funcs["sleep"]->getName(); ! 10: ?> ! 11: --EXPECT-- ! 12: sleep ! 13: