代码拉取完成,页面将自动刷新
同步操作将从 easysoft/zentaophp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?php
/**
* 整个应用的入口文件。
* The router file of zentaophp.
*
* All request should be routed by this router.
*
* The author disclaims copyright to this source code. In place of
* a legal notice, here is a blessing:
*
* May you do good and not evil.
* May you find forgiveness for yourself and forgive others.
* May you share freely, never taking more than you give.
*/
/* 先关闭所有的错误输出。Turn off error reporting first. */
error_reporting(0);
/* 使用ob捕获所有的输出。Use ob to get output. */
ob_start();
/* 加载框架核心文件。Load the framework. */
include './framework/router.class.php';
include './framework/control.class.php';
include './framework/model.class.php';
include './framework/helper.class.php';
/* 响应请求。Response the request. */
$app = router::createApp('demo', dirname(__FILE__), 'router'); // 实例化router。 Instance the router class.
$common = $app->loadCommon(); // 加载common模块。Load the common module.
$app->parseRequest(); // 解析请求。 Parse the request.
$app->loadModule(); // 加载模块。 Load module.
echo helper::removeUTF8Bom(ob_get_clean()); // 输出内容。 Print the output.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。