1、访问请求实例
通过依赖注入获取当前HTTP请求实例,应该在控制器的构造函数或方法中对 Illuminate\Http\Request类进行类型提示,当前请求实例会被服务容器自动注入:
<?phpnamespace App\Http\Controllers;use Illuminate\Http\Request;use Illuminate\Routing\Controller;class UserController extends Controller{ /** * 存储新用户 * * @param Request $request * @return Response */ public function store(Request $request) { $name=$request->input('name'); // }}
如果你的控制器方法还期望获取路由参数输入,只需要将路由参数置于其它依赖之后即可,例如,如果你的路由定义如下:
$app->put('user/{id}','UserController@update');
你仍然可以对 Illuminate\Http\Request进行类型提示并通过如下方式定义控制器方法来访问路由参数:
<?php namespace App\Http\Controllers; use Illuminate\Http\Request;use Illuminate\Routing\Controller;classUser Controller extends Controller{ /** * 更新指定用户 * * @param Request $request * @param int $id * @return Response */ public function update(Request $request,$id) { // }}
1.1 基本请求信息
Illuminate\Http\Request实例提供了多个方法来检测应用的HTTP请求,Lumen的 Illuminate\Http\Request继承自 Symfony\Component\HttpFoundation\Request类,这里列出了一些该类中的有用方法:
获取请求URI
path方法将会返回请求的URI,因此,如果进入的请求路径是 http://domain.com/foo/bar,则 path方法将会返回 foo/bar:
$uri=$request->path();
is方法允许你验证进入的请求是否与给定模式匹配。使用该方法时可以使用 *通配符:
if($request->is('admin/*')){ //}
想要获取完整的URL,而不仅仅是路径信息,可以调用请求实例的 url或 fullUrl方法:
//不带请求参数$url=$request->url();//带请求参数$url = $request->fullUrl();
获取请求方法
method方法将会返回请求的HTTP请求方式。你还可以使用 isMethod方法来验证HTTP请求方式是否匹配给定字符串:
$method=$request->method();if($request->isMethod('post')){ //}
1.2 PSR-7 请求
PSR-7标准指定了HTTP消息接口,包括请求和响应。如果你想要获取PSR-7请求实例,首先需要安装一些库,Lumen使用Symfony HTTP Message Bridge组件将典型的Lumen请求和响应转化为PSR-7兼容的实现:
composer require symfony/psr-http-message-bridgecomposer require zendframework/zend-diactoros
安装完这些库之后,你只需要在路由或控制器中通过对请求类型进行类型提示就可以获取PSR-7请求:
use Psr\Http\Message\ServerRequestInterface;$app->get('/', function (ServerRequestInterface $request) { //});
如果从路由或控制器返回的是PSR-7响应实例,则其将会自动转化为Lumen响应实例并显示出来。
2、获取输入
获取输入值
使用一些简单的方法,就可以从 Illuminate\Http\Request实例中访问用户输入。你不需要担心请求所使用的HTTP请求方法,因为对所有请求方式的输入访问接口都是一致的:
$name = $request->input('name');
你还可以传递一个默认值作为第二个参数给 input方法,如果请求输入值在当前请求未出现时该值将会被返回:
$name = $request->input('name', 'Sally');
处理表单数组输入时,可以使用”.”来访问数组:
$input = $request->input('products.0.name');$names = $request->input('products.*.name');
判断输入值是否出现
判断值是否在请求中出现,可以使用 has方法,如果值出现过了且不为空, has方法返回 true:
if ($request->has('name')) { //}
获取所有输入数据
你还可以通过 all方法获取所有输入数据:
$input = $request->all();
获取输入的部分数据
如果你需要取出输入数据的子集,可以使用 only或 except方法,这两个方法都接收一个数组或动态参数列表作为唯一参数:
$input = $request->only('username', 'password');$input = $request->only('username', 'password');$input = $request->except('credit_card');$input = $request->except('credit_card');
文件上传
获取上传的文件
可以使用 Illuminate\Http\Request实例的 file方法来访问上传文件,该方法返回的对象是 Symfony\Component\HttpFoundation\File\UploadedFile类的一个实例,该类继承自PHP标准库中提供与文件交互方法的 SplFileInfo类:
$file = $request->file('photo');
验证文件是否存在
使用 hasFile方法判断文件在请求中是否存在:
if ($request->hasFile('photo')) { //}
验证文件是否上传成功
使用 isValid方法判断文件在上传过程中是否出错:
if ($request->file('photo')->isValid()){ //}
保存上传的文件
使用 move方法将上传文件保存到新的路径,该方法将上传文件从临时目录(在PHP配置文件中配置)移动到指定新目录:
$request->file('photo')->move($destinationPath);$request->file('photo')->move($destinationPath, $fileName);
其它文件方法
UploadedFile实例中很有很多其它方法,查看 该类的API了解更多相关方法。

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
