代码很简单,大家注意看注释就可以了。
复制代码 代码如下:
/**
* 导入模块文件
*
* @param string $classString 导入文件路径字符串,可以用"."代替"/"
* @param string $fileType 导入文件类型的扩展名(带"."号),也可以是class/inc(简写方式)
* @return Exception 如果导入成功则返回true,否则返回异常对象
*
* @example
* importModule('gapi.Account') => include_once('modules/gapi/Account.class.php');
*/
function importModule($classString, $fileType = 'class')
{
$filename = $module_path. strtr($classString, '.', '/');
switch ($fileType) {
//导入类文件
case 'class': $filename .= '.class.php'; break;
//导入包含文件
case 'inc': $filename .= '.inc.php'; break;
//自定义导入文件的扩展名
default: $filename .= $fileType; break;
}
if (is_file($filename))
{
include_once($filename);
}
else
{
exit('class "\\' . strtr($classString, '.', '\\') . '" is not found.');
}
}
以上就是本文分享给大家的代码了,希望大家能够喜欢。
php,导入,模块文件
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。