php-8.0.30-src/ext/reflection/tests/019.phpt

10 lines
168 B
PHP

--TEST--
ReflectionFunction::getExtensionName
--FILE--
<?php
$f = new ReflectionFunction("sleep");
var_dump($f->getExtensionName());
?>
--EXPECT--
string(8) "standard"