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