mirror of
https://gitee.com/technical-laohu/mpay.git
synced 2026-05-07 01:01:10 +08:00
16 lines
224 B
PHP
16 lines
224 B
PHP
<?php
|
|
|
|
// [ 应用入口文件 ]
|
|
namespace think;
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
// 执行HTTP应用并响应
|
|
$http = (new App())->http;
|
|
|
|
$response = $http->run();
|
|
|
|
$response->send();
|
|
|
|
$http->end($response);
|