think 906 B

123456789101112131415161718192021222324
  1. #!/usr/bin/env php
  2. <?php
  3. // +----------------------------------------------------------------------
  4. // | framework
  5. // +----------------------------------------------------------------------
  6. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  7. // +----------------------------------------------------------------------
  8. // | 官方网站: http://framework.thinkadmin.top
  9. // +----------------------------------------------------------------------
  10. // | 开源协议 ( https://mit-license.org )
  11. // +----------------------------------------------------------------------
  12. // | github开源项目:https://github.com/zoujingli/framework
  13. // +----------------------------------------------------------------------
  14. namespace think;
  15. chdir(__DIR__);
  16. require __DIR__ . '/thinkphp/base.php';
  17. Container::get('app')->path(__DIR__ . '/application/')->initialize();
  18. Console::init();