0 Star 0 Fork 45

mtr2015 / smpss

forked from 齐迹 / smpss 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
global.php 534 Bytes
一键复制 编辑 原始数据 按行查看 历史
qiji 提交于 2015-03-27 11:38 . add
<?php
define("ROOT", dirname(__FILE__));
define("ROOT_APP", ROOT."/app");
define("ROOT_CONFIG", ROOT."/config");
define("ROOT_SLIGHTPHP", ROOT."/slightPHP/");
define("ROOT_PLIGUNS", ROOT_SLIGHTPHP."/plugins");
require_once(ROOT_SLIGHTPHP."/SlightPHP.php");
function __autoload($class){
if($class{0}=="S"){
$file = ROOT_PLIGUNS."/$class.class.php";
}else{
$file = SlightPHP::$appDir."/".str_replace("_","/",$class).".class.php";
}
if(file_exists($file)) return require_once($file);
}
spl_autoload_register('__autoload');
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mtr2015/smpss.git
git@gitee.com:mtr2015/smpss.git
mtr2015
smpss
smpss
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891