1 Star 0 Fork 2

温馨/phpstudent

forked from 小小/phpstudent 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 673 Bytes
一键复制 编辑 原始数据 按行查看 历史
春哥 提交于 2019-07-02 13:24 . myphp
<?php
/*
说明 : 本文件是入口文件,进入前台的首页
提示 : 默认前台入口为 Home ,也可修改(先修改 Home 文件夹的名字,然后修改configs/config.php文件中 的 home 值)
*/
error_reporting(0);
header("content-type:text/html;charset=utf-8");//中文乱码
include "configs/config.php";
define('Home',$config['home']);
$url= Home."/index.php";
$dir = "./".Home;
echo '<h2>跳转中..........</h2>';
// 验证目录是否存在
if(!is_dir($dir)){
$error=array();
$error['info']="当前目录下,目录 ".Home." 不存在";
$error['goback']=0;
include "style/erroer.html";
exit;
}
echo "<script>location.href='".$url."'</script>";
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ranran1997/phpstudent.git
git@gitee.com:ranran1997/phpstudent.git
ranran1997
phpstudent
phpstudent
master

搜索帮助