123456789101112131415161718192021222324252627 |
- <?php
- namespace think;
- if (version_compare(PHP_VERSION, '7.1.0', '<'))
- die('require PHP > 7.1.0 !');
-
- require __DIR__ . '/vendor/autoload.php';
- $http = (new App())->http;
- $response = $http->run();
- $response->send();
- $http->end($response);
|