1234567891011121314151617181920212223242526 |
-
- <?php
-
-
-
-
-
-
-
-
-
-
- namespace think;
-
- define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR);
- define('APP_PATH', ROOT_PATH . 'application' . DIRECTORY_SEPARATOR);
-
-
- require __DIR__ . '/thinkphp/base.php';
-
-
- Container::pull('app')->path(__DIR__ . '/application/')->initialize();
-
- Container::pull('hook')->listen('app_init');
-
- Console::init();
|