thinkphp6
在app\Request的构造函数中
public function __construct()
{
parent::__construct();
var_dump($this->param('token'));exit; //null
var_dump(\think\Request::param('token'));exit; //null
var_dump(\think\facade\Request::param('token'));exit; //产生Segmentation fault (core dumped)
var_dump(request()->param('token'));exit; //产生Segmentation fault (core dumped)
}现在用$_REQUEST可以获取,有什么其他解决办法吗最佳答案