本文介绍了如何在Laravel 5.2中访问控制器中的URL段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在Laravel 5.2中工作,我想访问控制器中的URL段.我正在使用

I am working in Laravel 5.2 and i want to access URL segments in my controller. I am using

echo  Request::segment(2);

,但不打印任何内容.如何从控制器中的url获取值.

but nothing is print. How can i get values from url in controller.

推荐答案

在laravel 5.2中,您可以这样做..

In laravel 5.2 you can do it this way..

echo request()->segment(2);

request()是Laravel 5.2中提供的几个辅助函数之一.它返回当前的请求对象,因此您无需在类顶部的外观使用use语句.

request() is one of the several helper functions provided in Laravel 5.2. It returns the current request object thus you don't need use statement for the facade on the top of your class.

这篇关于如何在Laravel 5.2中访问控制器中的URL段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 16:46