think 794 B

1234567891011121314151617181920
  1. #!/usr/bin/env php
  2. <?php
  3. // +----------------------------------------------------------------------
  4. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  9. // +----------------------------------------------------------------------
  10. // | Author: yunwuxin <448901948@qq.com>
  11. // +----------------------------------------------------------------------
  12. namespace think;
  13. // 加载基础文件
  14. require __DIR__ . '/framework/base.php';
  15. // 执行应用
  16. Container::get('app', [__DIR__ . '/application/'])->initialize();
  17. Console::init();