1 Star 0 Fork 21

W先森 / PPPHP

forked from kphcdr / PPPHP 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 605 Bytes
一键复制 编辑 原始数据 按行查看 历史
kphcdr 提交于 2014-08-19 20:44 . 修改WEB变量的含义
<?php
/*
* PPPHP入口文件
*
* @author kphcdr <kphcdr.163.com>
*/
header("Content-type:text/html;charset=utf-8");
define('ENVIRONMENT', true);//调试模式
define('PPPHP',realpath('./')); //F:\www\git\ppphp 根目录
//系统路径
define('CORE',PPPHP.'/Core');
define('APP', PPPHP.'/app');
define('VIEW', PPPHP.'/app/view/');
define('WEB', $_SERVER['PHP_SELF']);
echo WEB;exit();
//是否开启错误提示以及BUG调试
if (ENVIRONMENT)
{
error_reporting(E_ALL);
require CORE.'/lib/krumo/class.krumo.php';
}
else
{
error_reporting(0);
}
//let go
require CORE.'/ppphp.php';
1
https://gitee.com/wooge/PPPHP.git
git@gitee.com:wooge/PPPHP.git
wooge
PPPHP
PPPHP
master

搜索帮助