forked from geesondog/rhaphp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththink
20 lines (17 loc) · 793 Bytes
/
think
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env php
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: yunwuxin <[email protected]>
// +----------------------------------------------------------------------
namespace think;
// 加载基础文件
require __DIR__ . '/thinkphp/base.php';
// 执行应用
Container::get('app', [__DIR__ . '/application/'])->initialize();
Console::init();