work/index.php

12 lines
270 B
PHP
Raw Normal View History

2019-01-17 11:05:47 +08:00
<?php
namespace think;
// 加载基础文件
require __DIR__ . '/thinkphp/base.php';
// think文件检查防止TP目录计算异常
file_exists('think') || touch('think');
// 执行应用并响应
Container::get('app', [__DIR__ . '/application/'])->run()->send();