Example #1
0
<?php

/*
*	中转入口
*
*	@author kphcdr <kphcdr.163.com>
*/
if (!defined('PPPHP')) {
    exit('非法入口');
}
header("Content-type:text/html;charset=utf-8");
//是否开启错误提示以及BUG调试
if (DEBUG) {
    error_reporting(E_ALL);
} else {
    error_reporting(0);
}
//单次请求的常量
define('TIME', time());
//全局配置文件
$CONFIG = (require CORE . '/conf/setting.php');
//commnd
require CORE . '/common/common.php';
//载入ppphp
require CORE . '/core/conf.php';
#配置文件处理
require CORE . '/core/ppphp.class.php';
require CORE . '/core/model.class.php';
$ppphp = new ppphp();
$ppphp->go();
Example #2
0
<?php

define('DEBUG', true);
//调试模式
define('PPPHP', realpath('./'));
// 根目录
//系统路径
define('CORE', PPPHP . '/core');
define('APP', PPPHP . '/app');
define('VIEW', PPPHP . '/app/views');
include 'vendor/autoload.php';
include CORE . '/function/function.php';
if (DEBUG) {
    $whoops = new \Whoops\Run();
    $whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler());
    $whoops->register();
}
$core = new ppphp();
$core->go();