4 Star 5 Fork 2

kphcdr / ppcms

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.php 670 Bytes
一键复制 编辑 原始数据 按行查看 历史
kphcdr 提交于 2015-01-13 20:41 . 修复了BUG
<?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('CACHE',APP.'/tmp/');
define('WEB', dirname($_SERVER['SCRIPT_NAME']));
// 如果不开启隐藏index.php请使用
// define('WEB', $_SERVER['SCRIPT_NAME']);
//是否开启错误提示以及BUG调试
if (ENVIRONMENT)
{
error_reporting(E_ALL);
}
else
{
error_reporting(0);
}
//let go
require CORE.'/ppphp.php';
PHP
1
https://gitee.com/kphcdr/ppcms.git
git@gitee.com:kphcdr/ppcms.git
kphcdr
ppcms
ppcms
master

搜索帮助