laravel几种获取url的方式
2018-10-10 本文已影响328人
呦丶耍脾气
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()