<?php
/**
* Created by JetBrains PhpStorm.
* User: 张华
* Date: 14-3-8
* Time: 下午12:21
* QQ: 746502560@qq.com
* To change this template use File | Settings | File Templates.
*/
header('Content-type: text/html; charset=utf-8');#设置头信息
header("cache-control: pulic,max-age=1800,must-revalidate");#cdn 加速缓存使用参数
date_default_timezone_set('PRC');#设置时间区域
include_once(dirname(__FILE__).'/engine/zhphp.php');
###################################### Application start ######################################################
if(!ob_start("ob_gzlib"))ob_start();#打开磁盘缓冲
ob_implicit_flush(0);#提高缓冲执行效率
if( !session_id() ) session_start();
html::tryStaticHtml();//在执行动态代码之前,依据配置尝试加载静态,减少服务器开销
engine::loadComponent();#控制器加载组件文件
dispatcher::dispatch();#路由分发
$endTime=microtime(true);
$time=$endTime-$startTime;
ob_end_flush();
if(is_file($_SERVER['DOCUMENT_ROOT'].'/360safe/360webscan.php')){ #漏洞监测
require_once($_SERVER['DOCUMENT_ROOT'].'/360safe/360webscan.php');
}
if(APP_DEBUG){
$runtime = memory_get_usage();
die('<div style="width: 100%; height:20px;margin: 0 auto; text-align: center color: #B50000; border: 1px solid darkgreen;">提示请您关闭debug</div><div style="color:green; width:100%; height:40px; text-align:center;">调度总时间:'.$time.'seconds---------运行占用内存:(单位:MB):'.sprintf('%01.2f',($runtime) / 1024 / 1024).'MB'.' 运行数据为未缓存运行数据</div>');
}
unset($router,$endTime,$time);
die();
###########################网页运行结束!(以下内容为非法内容)########################################################