// +---------------------------------------------------------------------- // [ 应用入口文件 ] namespace think; require __DIR__ . '/../vendor/autoload.php'; //定义分隔符 define('DS', DIRECTORY_SEPARATOR); // 执行HTTP应用并响应 $http = (new App())->http; // 域名绑定应用使用统一入口 $response = $http->run(); // 应用入口 //$response = $http->name('index')->run(); $response->send(); $http->end($response);