10 lines
222 B
PHP
10 lines
222 B
PHP
<?php
|
|
use think\Container;
|
|
|
|
// 加载基础文件\
|
|
require __DIR__ . '/thinkphp/base.php';
|
|
require __DIR__.'/vendor/autoload.php';
|
|
//
|
|
// 执行应用并响应
|
|
Container::get('app')->bind('push/Push/index')->run()->send();
|