1. 获取请求url
#$request需要注入`Request $request`
$url = $request->url();//返回不带查询字符串(不带参数)的URL:http://laravel.demo/hello
$url = $request->fullUrl();//包含查询字符串:http://laravel.demo/hello?kk=111
$url = url()->current();//返回不带查询字符串(不带参数)的URL:http://laravel.demo/hello
$url = url()->full();//包含查询字符串:http://laravel.demo/hello?kk=111
2. 获取上一个url
$url = url()->previous()
网友评论