php-src/ext/reflection/tests/019.phpt
2018-10-14 19:44:14 +02:00

10 lines
168 B
PHP

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