buildadmin/app/Request.php

21 lines
437 B
PHP
Raw Normal View History

<?php
2022-08-23 15:01:30 +00:00
namespace app;
/**
* 应用请求对象类
*/
class Request extends \think\Request
{
public function __construct()
{
parent::__construct();
// 从配置文件读取代理服务器ip并设置给 \think\Request
$proxyServerIp = config('buildadmin.proxy_server_ip');
if (is_array($proxyServerIp) && $proxyServerIp) {
$this->proxyServerIp = $proxyServerIp;
}
}
}