<?php
namespace think;

// 加载基础文件
require __DIR__ . '/../thinkphp/base.php';
date_default_timezone_set('Asia/Shanghai');
header('Access-Control-Allow-Origin:*');
header('Access-Control-Allow-Headers:*');
header('Access-Control-Request-Method:*');
if( $_SERVER['REQUEST_METHOD'] == 'OPTIONS'){
   exit;
}
// 支持事先使用静态方法设置Request对象和Config对象

// 执行应用并响应
Container::get('app')->run()->send();
