2023-01-29 10:26:52 +08:00

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';
?>