summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/019.phpt
blob: cd4bd3e467b787c1e1ee11f9b0dff4895ce05b1c (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
ReflectionFunction::getExtensionName
--SKIPIF--
<?php extension_loaded('reflection') or die('skip'); ?>
--FILE--
<?php
$f = new ReflectionFunction("sleep");
var_dump($f->getExtensionName());
?>
--EXPECT--
string(8) "standard"