1--TEST-- 2ReflectionExtension::getFunctions() 3--FILE-- 4<?php 5$ext = new ReflectionExtension("standard"); 6$funcs = $ext->getFunctions(); 7echo $funcs["sleep"]->getName(); 8?> 9--EXPECT-- 10sleep 11