index.php 345 B

1234567891011121314151617181920
  1. <?php
  2. // [ 应用入口文件 ]
  3. namespace think;
  4. // 检测PHP环境
  5. if (version_compare(PHP_VERSION, '7.1.0', '<')) die('require PHP > 7.1.0 !');
  6. // 加载核心文件
  7. require __DIR__ . '/../vendor/autoload.php';
  8. // 执行HTTP应用并响应
  9. $http = (new App())->http;
  10. $response = $http->run();
  11. $response->send();
  12. $http->end($response);