5 Star 11 Fork 1

flc1125/alidayu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
autoload.php 522 Bytes
一键复制 编辑 原始数据 按行查看 历史
flc1125 提交于 2017-01-25 16:05 . fix #5
<?php
/**
* 自动载入
*
* @author Flc <2016-10-25 17:35:52>
* @link http://flc.ren
*/
spl_autoload_register(function ($classname) {
$baseDir = __DIR__ . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'Alidayu' . DIRECTORY_SEPARATOR;
if (strpos($classname, "Flc\\Alidayu\\") === 0) {
$path = str_replace('\\', DIRECTORY_SEPARATOR, substr($classname, strlen('Flc\\Alidayu\\')));
$file = $baseDir . $path . '.php';
if (is_file($file))
require_once $file;
}
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/flc1125/alidayu.git
git@gitee.com:flc1125/alidayu.git
flc1125
alidayu
alidayu
master

搜索帮助