美文网首页
laravel几种获取url的方式

laravel几种获取url的方式

作者: 呦丶耍脾气 | 来源:发表于2018-10-10 15:52 被阅读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()

相关文章

网友评论

      本文标题:laravel几种获取url的方式

      本文链接:https://www.haomeiwen.com/subject/hwcyaftx.html