12 lines
206 B
Plaintext
12 lines
206 B
Plaintext
![]() |
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
namespace think;
|
||
|
|
||
|
// 加载基础文件
|
||
|
require __DIR__ . '/thinkphp/base.php';
|
||
|
|
||
|
// 执行应用
|
||
|
Container::get('app', [__DIR__ . '/application/'])->initialize();
|
||
|
Console::init();
|