代码拉取完成,页面将自动刷新
<?php
namespace api;
class Loader
{
/* 路径映射 */
public static $vendorMap = array(
'base' => __DIR__ . DIRECTORY_SEPARATOR,
'service' => __DIR__ . DIRECTORY_SEPARATOR . 'service'
);
/**
* 自动加载器
*/
public static function autoload($class)
{
$file = self::findFile($class);
if (file_exists($file)) {
self::includeFile($file);
}
}
/**
* 解析文件路径
*/
private static function findFile($class)
{
$vendor = substr($class, 0, strpos($class, '\\')); // 顶级命名空间
if (!empty($vendor)) {
$vendorDir = self::$vendorMap[$vendor]; // 文件基目录
} else {
$vendorDir = self::$vendorMap['base'];
}
$filePath = substr($class, strlen($vendor)) . '.php'; // 文件相对路径
return strtr($vendorDir . $filePath, '\\', DIRECTORY_SEPARATOR); // 文件标准路径
}
/**
* 引入文件
*/
private static function includeFile($file)
{
if (is_file($file)) {
require_once($file);
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。