summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/019.phpt
blob: b6ac20c6bd7add04be76990ee5f3655305abb6fa (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"