11 lines
248 B
PHP
11 lines
248 B
PHP
<?php
|
|
if(version_compare(PHP_VERSION,'5.4.0','<')) die('require PHP > 5.4.0 !');
|
|
|
|
// 定义应用目录
|
|
define('APP_PATH', __DIR__ . '/application/');
|
|
|
|
// 绑定到admin模块
|
|
define('BIND_MODULE','admin');
|
|
|
|
require __DIR__ . '/core/start.php';
|
|
?>
|