Files
juipphp/index.php

30 lines
570 B
PHP
Raw Normal View History

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