3 Star 5 Fork 1

Pader / vgotfaster

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 808 Bytes
一键复制 编辑 原始数据 按行查看 历史
Pader 提交于 2014-09-03 20:27 . fix
<?php
/**
* VgotFaster PHP Framework V1.0
*
* VgotFaster 入口文件
*
* @link http://vgotfaster.googlecode.com
* http://www.vgot.net
* @author yp2008cn@gmail.com
* ypnow@163.com
* QQ 270075658
*/
define('VGOTFASTER', __FILE__);
/**
* 应用框架环境配置
*
* 应用程序可根据此配置读取不同的配置等
*
* development 本地开发环境
* testing 测试平台
* production 线上正式环境(生产环境)
*/
define('ENVIRONMENT', 'development');
switch (ENVIRONMENT) {
case 'production':
error_reporting(0);
break;
case 'testing':
case 'development':
error_reporting(E_ALL);
break;
}
//应用程序与核心所在目录配置
//VgotFaster Constant
define('APPLICATION_PATH', 'app');
define('SYSTEM_PATH', 'system');
//Load VgotFaster Core Running
require SYSTEM_PATH.'/vgotfaster.php';
?>
PHP
1
https://gitee.com/pader/vgotfaster.git
git@gitee.com:pader/vgotfaster.git
pader
vgotfaster
vgotfaster
master

搜索帮助