You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.6 KiB
42 lines
1.6 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006-2018 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
// [ 应用入口文件 ]
|
|
namespace think;
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
// header( "Access-Control-Allow-Origin: *" );
|
|
// header( "Access-Control-Allow-Headers: content-type,token , autograph, Origin, X-Requested-With, Content-Type, Accept, Authorization" );
|
|
// header( 'Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS,PATCH' );
|
|
header( "Access-Control-Allow-Origin: *" );
|
|
header( "Access-Control-Allow-Headers: *" );
|
|
header( 'Access-Control-Allow-Credentials: true' );
|
|
header( 'Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS,PATCH' );
|
|
// 执行HTTP应用并响应
|
|
|
|
// add_header 'Access-Control-Allow-Origin' '*';
|
|
// add_header 'Access-Control-Allow-Credentials' 'true';
|
|
// add_header 'Access-Control-Allow-Headers' '*';
|
|
// add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
|
|
//require_once("keygen.php");
|
|
|
|
$http = ( new App() )->http;
|
|
|
|
$response = $http->run();
|
|
|
|
|
|
//require_once("keys_from_generators.php");
|
|
|
|
$response->send();
|
|
|
|
|
|
|
|
$http->end( $response );
|
|
|