11 Star 16 Fork 7

sunbingzibo/smarket

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
global.php 556 Bytes
一键复制 编辑 原始数据 按行查看 历史
<?php
error_reporting(0);
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 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/9786/smarket.git
git@gitee.com:9786/smarket.git
9786
smarket
smarket
master

搜索帮助