在Laravel中如何获取HTTP请求体的内容?

WBOY
发布: 2023-09-11 14:16:01
转载
1501 人浏览过

To get the details of the HTTP request you need to make use of the class IlluminateHttpRequest.

使用上面的类,您将能够从HTTP请求中获取输入、cookies和文件。现在考虑以下表单 -

在Laravel中如何获取HTTP请求体的内容?

To get all the details from the HTTP request you can do as follows −

Example 1

的翻译为:

示例 1

Using $request->all() method

在下面的表单中输入以下详细信息:

在Laravel中如何获取HTTP请求体的内容?

Once you submit it will retrieve all the input data and return an array with data.

public function validateform(Request $request) {
   $input = $request->all();
   print_r($input);
}
登录后复制

输出

The output of the above code is −

Array (
   [_token] => 367OQ9dozmWlnhu6sSs9IvHN7XWa6YKpSnnWrBXx
   [name] => Rasika Desai
   [email] => rasika@gmail.com
   [age] => 20
   [address] => Pune
)
登录后复制

Example 2

的中文翻译为:

示例2

Using $request->collect() method.

This method will return the data as a collection.

public function validateform(Request $request) {
   $input = $request->collect();
   print_r($input);
}
登录后复制

输出

The output of the above code is −

Illuminate\Support\Collection Object (
   [items:protected] => Array(
      [_token] => 367OQ9dozmWlnhu6sSs9IvHN7XWa6YKpSnnWrBXx
      [name] => Rasika Desai
      [email] => rasika@gmail.com
      [age] => 20
      [address] => Pune
   )
   [escapeWhenCastingToString:protected] =>
)
登录后复制

Example 3

使用 $request->getContent() 方法。

此方法将输出为URL查询字符串,数据以键/值对的形式传递。

public function validateform(Request $request) {
   $input = $request->getContent();
   echo $input;
}
登录后复制

输出

The output of the above code is

_token=367OQ9dozmWlnhu6sSs9IvHN7XWa6YKpSnnWrBXx&name=Rasika+Desai&email=rasika%40gmail.com&age=20&address=Pune
登录后复制
登录后复制

Example 4

使用 php://input

这将返回来自URL查询字符串中输入字段的数据。

$data = file_get_contents('php://input');
print_r($data);
登录后复制

输出

The output of the above code is −

_token=367OQ9dozmWlnhu6sSs9IvHN7XWa6YKpSnnWrBXx&name=Rasika+Desai&email=rasika%40gmail.com&age=20&address=Pune
登录后复制
登录后复制

以上是在Laravel中如何获取HTTP请求体的内容?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!