16
2022-03
tp6入口文件如何绑定控制器
// [ 应用入口文件 ]
namespace think;
require __DIR__ . '/vendor/autoload.php';
// 执行HTTP应用并响应
$http = (new App())->http;
$resp...