work/index.php
2024-01-03 09:54:57 +08:00

12 lines
270 B
PHP
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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