xref: /PHP-7.4/ext/reflection/tests/013.phpt (revision f1d7e3ca)
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