加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
admin.php 708 Bytes
一键复制 编辑 原始数据 按行查看 历史
百家 提交于 2015-08-23 09:33 . First commit
<?php
if((empty($_REQUEST['name'])||!empty($_REQUEST['name'])&&$_REQUEST['name']!='modules')&&!file_exists(str_replace("\\",'/', dirname(__FILE__)).'/config/install.link'))
{
header("location:install.php");
exit;
}
if(defined('SYSTEM_ACT')&&SYSTEM_ACT=='mobile')
{
$mod='mobile';
}else
{
$mod=empty($_REQUEST['mod'])?'site':$_REQUEST['mod'];
}
if($mod=='mobile')
{
defined('SYSTEM_ACT') or define('SYSTEM_ACT', 'mobile');
}else
{
defined('SYSTEM_ACT') or define('SYSTEM_ACT', 'index');
}
if(empty($_REQUEST['do']))
{
$do='index';
}else
{
$do=$_REQUEST['do'];
}
if(!empty($do))
{
ob_start();
$CLASS_LOADER="driver";
require 'includes/init.php';
ob_end_flush();
exit;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化