123456789101112131415161718192021222324252627282930 |
- <?php
- namespace think;
- $path = '/'.$argv[1];
- $_GET['s'] = $_SERVER['s'] = $_SERVER['REQUEST_URI'] = $path;
- require __DIR__ . '/../vendor/autoload.php';
- $http = (new App())->http;
- $response = $http->run();
- $http->end($response);
|