//漪梦星QQ3549531945 // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK ] // +---------------------------------------------------------------------- // | Copyright (c) 2006-2019 http://thinkphp.cn All rights reserved. // +---------------------------------------------------------------------- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: liu21st // +---------------------------------------------------------------------- // [ 应用入口文件 ] namespace think; require __DIR__ . '/../vendor/autoload.php'; if ('8.0.0' > phpversion()) { exit('您的php版本过低,不能安装本软件,兼容php版本8.0,谢谢!'); } if (phpversion() >= '8.1.0') { exit('您的php版本太高,不能安装本软件,兼容php版本8.0,谢谢!'); } if (!extension_loaded('swoole_loader')) { header("location: /swoole-compiler-loader.php"); die; } if (file_exists("./install/") && !file_exists("./install.lock")) { header('Location:./install/index.php'); exit(); } // 执行HTTP应用并响应 $http = (new App())->http; $response = $http->run(); $response->send(); $http->end($response);