如题 一般判断有没有请求头都用hasxxx 应该用什么来判断请求头呢?
$request->header(); 获取所有请求头 $request->header('host'); 获取指定请求头
这个我知道 但是有时候没有请求头 如果直接赋值的话 会报错,然后我用了Request()获取赋值直接报错了Error: Call to a member function header() on null in
$test = $request->header('test',123); 这样赋默认值
$request->header(); 获取所有请求头
$request->header('host'); 获取指定请求头
这个我知道 但是有时候没有请求头 如果直接赋值的话 会报错,然后我用了Request()获取赋值直接报错了Error: Call to a member function header() on null in
$test = $request->header('test',123); 这样赋默认值