30 lines
570 B
PHP
30 lines
570 B
PHP
<?php
|
|
/*
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: kangkang
|
|
* @Date: 2020-09-30 17:32:46
|
|
* @LastEditors: kangkang
|
|
* @LastEditTime: 2020-10-14 19:30:15
|
|
*/
|
|
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
|
|
ini_set('date.timezone','Asia/Shanghai');
|
|
|
|
//应用目录为当前目录
|
|
define('APP_PATH',__DIR__.'/');
|
|
|
|
//开启调试模式
|
|
define('APP_DEBUG',true);
|
|
|
|
//加载框架文件
|
|
require_once APP_PATH.'fastphp/Fastphp.php';
|
|
|
|
//加载配置文件
|
|
$config = require_once APP_PATH.'config/config.php';
|
|
|
|
//实例化框架类
|
|
(new fastphp\Fastphp($config))->run();
|
|
|