index.php 277 B

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