<?php
/*
 * @Author: Kevin.Feng
 * @Date: 2024-10-07 15:57:48
 * @LastEditors: Kevin.Feng
 * @LastEditTime: 2025-01-13 10:34:43
 * @FilePath: \dijoncake-dmd\public\index.php
 * @Description: 
 * @custom_string_KevinFeng: 
 * @custom_string_KevinFeng_copyright: Copyright (c) 2025 by 天津艾克信息技术有限公司, All Rights Reserved. 
 */
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------

// [ 应用入口文件 ]
namespace think;

define('DS', DIRECTORY_SEPARATOR);
define('APP_DEBUG', true);
require __DIR__ . '/../vendor/autoload.php';

var_dump(request()->host(true));
// 执行HTTP应用并响应
$http = (new App())->http;

$response = $http->run();

$response->send();

$http->end($response);
