index.php 206 B

1234567891011
  1. <?php
  2. namespace think;
  3. require __DIR__ . '/../vendor/autoload.php';
  4. // 执行HTTP应用并响应
  5. $http = (new App())->http;
  6. $response = $http->run();
  7. $response->send();
  8. $http->end($response);