You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
300 B

--TEST--
ReflectionFunction::getExtensionName()
--FILE--
<?php
function foo() {}
$function = new ReflectionFunction('sort');
var_dump($function->getExtensionName());
$function = new ReflectionFunction('foo');
var_dump($function->getExtensionName());
?>
--EXPECT--
string(8) "standard"
bool(false)