peixunguanwang/index.php
2022-01-24 10:43:35 +08:00

24 lines
524 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* @copyright (C)2016-2099 Hnaoyun Inc.
* @author XingMeng
* @email hnxsh@foxmail.com
* @date 2016年11月5日
* 用户前端入口文件
*/
// 定义为入口文件
define('IS_INDEX', true);
// 入口文件地址绑定
define('URL_BIND', 'home');
// PHP版本检测
if (PHP_VERSION < '5.4') {
header('Content-Type:text/html; charset=utf-8');
exit('您服务器PHP的版本太低程序要求PHP版本不小于5.4');
}
// 引用内核启动文件
require dirname(__FILE__) . '/core/start.php';