关于Discuz的一些函数的定义

 

libfile()函数

 

在discuz x2.0中的 source\function\function_core.php下的:

function libfile($libname, $folder = '') {
$libpath = DISCUZ_ROOT.'/source/'.$folder;
if(strstr($libname, '/')) {
list($pre, $name) = explode('/', $libname);
return realpath("{$libpath}/{$pre}/{$pre}_{$name}.php");
} else {
return realpath("{$libpath}/{$libname}.php");
}
}

 

 

 

你可能感兴趣的:(discuz)