xref: /PHP-7.4/ext/reflection/tests/019.phpt (revision 17ccbeec)
1--TEST--
2ReflectionFunction::getExtensionName
3--FILE--
4<?php
5$f = new ReflectionFunction("sleep");
6var_dump($f->getExtensionName());
7?>
8--EXPECT--
9string(8) "standard"
10