diff --git a/think b/think index 1c22429983b08c2ed611a9d623372192ed9c9636..366164799d3ef7793f3ffaeb7ad9cf91cdb78470 100755 --- a/think +++ b/think @@ -15,8 +15,11 @@ namespace think; // 加载基础文件 require __DIR__ . '/thinkphp/base.php'; +// 引入公共入口文件 +require __DIR__.'/public/core.php'; + // 应用初始化 Container::get('app')->path(__DIR__ . '/application/')->initialize(); // 控制台初始化 -Console::init(); \ No newline at end of file +Console::init();