本文整理匯總了PHP中PHPUnit_Util_Class::fileFunctionMap方法的典型用法代碼示例。如果您正苦於以下問題:PHP PHPUnit_Util_Class::fileFunctionMap方法的具體用法?PHP PHPUnit_Util_Class::fileFunctionMap怎麽用?PHP PHPUnit_Util_Class::fileFunctionMap使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PHPUnit_Util_Class
的用法示例。
在下文中一共展示了PHPUnit_Util_Class::fileFunctionMap方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getFunctionsInFile
/**
* Returns the names of the classes declared in a sourcefile.
*
* @param string $filename
* @param string $commonPath
* @param boolean $clearCache
* @return array
* @since Method available since Release 3.2.0
* @todo Find a better place for this method.
*/
public static function getFunctionsInFile($filename, $commonPath = '', $clearCache = FALSE)
{
if ($commonPath != '') {
$filename = str_replace($commonPath, '', $filename);
}
if ($clearCache) {
self::$fileFunctionMap = array();
}
if (empty(self::$fileFunctionMap)) {
$functions = get_defined_functions();
foreach ($functions['user'] as $functionName) {
$function = new ReflectionFunction($functionName);
$file = $function->getFileName();
if ($commonPath != '') {
$file = str_replace($commonPath, '', $file);
}
if (!isset(self::$fileFunctionMap[$file])) {
self::$fileFunctionMap[$file] = array($function);
} else {
self::$fileFunctionMap[$file][] = $function;
}
}
}
return isset(self::$fileFunctionMap[$filename]) ? self::$fileFunctionMap[$filename] : array();
}