使用 PHP 接收 JSON POST

Receive JSON POST with PHP

提问人:Pablo Ramirez 提问时间:9/18/2013 最后编辑:dakabPablo Ramirez 更新时间:4/5/2023 访问量:652009

问:

我正在尝试在支付界面网站上接收 JSON POST,但我无法解码它。

当我打印时:

echo $_POST;

我得到:

Array

当我尝试这个时,我什么也得不到:

if ( $_POST ) {
    foreach ( $_POST as $key => $value ) {
        echo "llave: ".$key."- Valor:".$value."<br />";
    }
}

当我尝试这个时,我什么也得不到:

$string = $_POST['operation'];
$var = json_decode($string);
echo $var;

当我尝试这个时,我得到 NULL:

$data = json_decode( file_get_contents('php://input') );
var_dump( $data->operation );

当我这样做时:

$data = json_decode(file_get_contents('php://input'), true);
var_dump($data);

我得到:

NULL

JSON格式为(根据支付网站文档):

{
   "operacion": {
       "tok": "[generated token]",
       "shop_id": "12313",
       "respuesta": "S",
       "respuesta_details": "respuesta S",
       "extended_respuesta_description": "respuesta extendida",
       "moneda": "PYG",
       "monto": "10100.00",
       "authorization_number": "123456",
       "ticket_number": "123456789123456",
       "response_code": "00",
       "response_description": "Transacción aprobada.",
       "security_information": {
           "customer_ip": "123.123.123.123",
           "card_source": "I",
           "card_country": "Croacia",
           "version": "0.3",
           "risk_index": "0"
       }
    }
}

支付网站日志显示一切正常。怎么了?

PHP JSON 帖子

评论

4赞 Sergiu Paraschiv 9/18/2013
说什么?它是一个空数组吗?var_dump($_POST)
4赞 Akshaya Shanbhogue 9/18/2013
$_POST 包含“&”分隔的 POST 请求字典。json 的 _POST 美元绝对行不通。你能打印file_get_contents('php://input')吗?也是var_dump($data->操作);或 var_dump($data->operacion); ?
5赞 Sergiu Paraschiv 9/18/2013
JSON是文本,为什么不能在POST中访问它?只要支付服务将该文本 POST 到他的 PHP 端点,那么他应该能够这样做。但也许服务在请求正文中发送数据,那是另一回事,是的,应该可以工作。json_decodefile_get_contents('php://input')
2赞 Sergiu Paraschiv 9/18/2013
如果是这样,那么这里已经讨论过了:stackoverflow.com/questions/8945879/......
5赞 Cristian Sepulveda 5/18/2018
$_POST:在请求中使用 application/x-www-form-urlencoded 或 multipart/form-data 作为 HTTP Content-Type 时,通过 HTTP POST 方法传递给当前脚本的变量关联数组。使用 application/json 时不行。

答:

652赞 Dom 9/18/2013 #1

尝试;

$data = json_decode(file_get_contents('php://input'), true);
print_r($data);
echo $data["operacion"];

从您的 json 和代码来看,您似乎已经正确拼写了单词 operation,但它不在 json 中。

编辑

也许也值得尝试从 php://input 中回显 json 字符串。

echo file_get_contents('php://input');

评论

7赞 Patrick 10/1/2013
就其价值而言,operacion 是西班牙语的拼写(给予或接受口音)。
14赞 msj121 12/12/2013
他的观点是,他在两个地方都没有正确拼写,无论是在两个地方的操作还是操作。
2赞 aljo f 2/18/2015
在 PHP 5.6 之前,获取 php://input 的内容只能执行一次。你的代码或框架以前可以在某个地方打开它吗?
0赞 sundowatch 2/4/2021
注意不要在json数据上使用单引号
37赞 Urisavka 3/26/2014 #2

使用代替 .$HTTP_RAW_POST_DATA$_POST

它将按原样为您提供 POST 数据。

您将能够稍后使用它进行解码。json_decode()

评论

53赞 Bikal Basnet 9/14/2014
由于 $HTTP_RAW_POST_DATA 已弃用,因此您可以使用这种方式来读取 JSON POST$json = file_get_contents('php://input'); $obj = json_decode($json);
2赞 Gene Bo 3/19/2015
对我来说,这个常见的答案 [ use $json = file_get_contents('php://input');我看到当JSON以最外层的“容器字符”作为[]发送时不起作用。这里的这个答案RAW_POST_DATA为我起了作用。并且适用于我当前的PHP堆栈。我被困了一会儿......非常感谢这个解决方案!
0赞 developius 10/2/2016
这仍然是最新的,例如,对于 GitLab webhook,您仍然必须使用 .$HTTP_RAW_POST_DATA
0赞 Scooter 3/1/2017
我搜索并寻找解决方案,而 Bikel Basnet 您的解决方案对我有用。谢谢!
1赞 victorelec14 6/16/2020
警告此功能在 PHP 5.6.0 中已弃用,自 PHP 7.0.0 起被移除。
15赞 gdm 5/2/2016 #3

阅读文档:

通常,应使用 php://input 而不是 $HTTP_RAW_POST_DATA。

在php手册

评论

8赞 Promo 12/28/2016
警告此功能在 PHP 5.6.0 中已弃用,自 PHP 7.0.0 起被移除。=> php.net/manual/en/reserved.variables.httprawpostdata.php
2赞 RiggsFolly 1/4/2021
链接现在被打破了
0赞 GabrieleMartini 4/3/2021
在 POST 请求的情况下,最好使用 php://input 而不是 $HTTP_RAW_POST_DATA,因为它不依赖于特殊的 php.ini 指令。此外,对于默认情况下未填充 $HTTP_RAW_POST_DATA 的情况,它是激活 always_populate_raw_post_data 的可能占用较少内存的替代方法。php://input 不适用于 enctype=“multipart/form-data”。
67赞 XtraSimplicity 6/16/2016 #4

值得指出的是,如果您使用(如其他人所提到的),如果字符串不是有效的 JSON,这将失败。json_decode(file_get_contents("php://input"))

这可以通过首先检查 JSON 是否有效来简单地解决。即

function isValidJSON($str) {
   json_decode($str);
   return json_last_error() == JSON_ERROR_NONE;
}

$json_params = file_get_contents("php://input");

if (strlen($json_params) > 0 && isValidJSON($json_params))
  $decoded_params = json_decode($json_params);

编辑:请注意,删除上述内容可能会导致细微的错误,因为在传递空白字符串时不会更改,如下所示: http://ideone.com/va3u8Ustrlen($json_params)json_last_error()null

评论

4赞 faintsignal 2/2/2019
如果有人期望输入中有相当多的数据和/或大量请求,他们可能希望扩展该函数,以选择性地使用json_decode结果填充提供的变量引用,这样就不需要对格式正确的输入执行两次解析。
7赞 kakoma 3/27/2019
这样一来,你实际上对 json 进行了两次解码。太贵了。使用第一次解码时,您可以立即保存解码值,然后进行检查 (json_last_error() == JSON_ERROR_NONE),如果一切正常,然后继续处理 [否则失败]
0赞 XtraSimplicity 3/27/2019
@kakoma,绝对是!这是在考虑简单的情况下编写的。出于教育目的,简单性通常比效率更重要。:)
1赞 kakoma 3/27/2019
真。用于教育目的。感谢您@XtraSimplicity哈的澄清,它甚至以你的名字命名:-)
0赞 mickmackusa 9/2/2023
PHP8.3 现在有 .stackoverflow.com/a/19498903/2943403php.watch/versions/8.3/json_validatejson_validate()
132赞 Steve C 9/15/2016 #5

例如,如果您已经设置了 $_POST['eg'] 等参数,并且不想更改它,只需这样做:

$_POST = json_decode(file_get_contents('php://input'), true);

这将为您省去将所有 _POST 美元更改为其他内容的麻烦,并且如果您希望删除此行,您仍然可以提出正常的发布请求。

评论

1赞 vanurag 3/21/2018
谢谢你,先生。这在我的情况下有效,因为我正在从 Android 到 PHP 进行 json 发布!
0赞 funder7 8/7/2019
谢谢,它确实在我的情况下起作用。我将 $_POST 数据分配给一个$request变量,现在我只是将 php://input 的内容分配给该变量。
0赞 NoobCoder 7/8/2021
嗨,我在php中有这样的东西。我怎样才能更改这里的代码,以便我可以传递json并推送到phpmysql数据库字段?$sql = "INSERT INTO userdetails (email, username) VALUES ('".$_POST['email']."', '".$_POST['username']."')"; if (mysqli_query($conn,$sql)) { $data = array("data" => "You Data added successfully"); echo json_encode($data);
12赞 hyperCoder 6/18/2018 #6
$data = file_get_contents('php://input');
echo $data;

这对我有用。

-3赞 Luca Reghellin 7/31/2018 #7

我想发布一个答案,该答案也使用 curl 来获取内容,并使用 mpdf 将结果保存为 pdf,这样您就可以获得典型用例的所有步骤。它只是原始代码(因此要根据您的需求进行调整),但它可以工作。

// import mpdf somewhere
require_once dirname(__FILE__) . '/mpdf/vendor/autoload.php';

// get mpdf instance
$mpdf = new \Mpdf\Mpdf();

// src php file
$mysrcfile = 'http://www.somesite.com/somedir/mysrcfile.php';
// where we want to save the pdf
$mydestination = 'http://www.somesite.com/somedir/mypdffile.pdf';

// encode $_POST data to json
$json = json_encode($_POST);

// init curl > pass the url of the php file we want to pass 
// data to and then print out to pdf
$ch = curl_init($mysrcfile);

// tell not to echo the results
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1 );

// set the proper headers
curl_setopt($ch, CURLOPT_HTTPHEADER, [ 'Content-Type: application/json', 'Content-Length: ' . strlen($json) ]);

// pass the json data to $mysrcfile
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);

// exec curl and save results
$html = curl_exec($ch);

curl_close($ch);

// parse html and then save to a pdf file
$mpdf->WriteHTML($html);
$this->mpdf->Output($mydestination, \Mpdf\Output\Destination::FILE);

在$mysrcfile中,我将像这样读取 json 数据(如前面的答案所述):

$data = json_decode(file_get_contents('php://input'));
// (then process it and build the page source)

评论

2赞 Fipsi 7/20/2019
太多无用的信息..第一个代码有什么作用?第二个片段是答案。
0赞 Luca Reghellin 7/22/2019
@Fipsi,(以及所有反对者)我的答案只是,而且很明显,是其他答案的纲要。而且,正如我所写的,一个用例(mpdf)。在撰写本文时,当我试图弄清楚如何做到这一点时,我很想看到这样的答案。我的第二个片段当然不是答案,因为要接收json数据,数据也必须正确发送,而且不仅发送方式更多,而且通常方式,正是真正的问题。在这种情况下,重点不是json_decode,而是如何正确地从 .file_get_contents('php://input')
5赞 Fipsi 7/22/2019
我没有投反对票,我理解你的意图。但问题是“接收 JSON”而不是“发送 JSON”。从这个问题中可以清楚地看出,OP 在接收时存在问题,并且对发送并不真正感兴趣
5赞 sifr_dot_in 12/6/2020 #8

很晚了。
看来,(OP)已经尝试了所有给他的答案。
尽管如此,如果您 (OP) 没有收到已传递给“.PHP“文件,可能是错误,URL 不正确。
检查您调用的“.PHP“文件。
(URL 中的拼写错误或大写字母)
最重要的是
检查您的 URL 在“http”之后是否有“s”(安全)。
例:

"http://yourdomain.com/read_result.php"

应该是

"https://yourdomain.com/read_result.php"

或任一方式。
添加或删除“s”以匹配您的 URL。

16赞 Enamul Haque 5/1/2021 #9

您可以使用波纹管,例如.. 像下面这样发布 JSON

enter image description here

从下面的 php 项目用户那里获取数据,例如

// takes raw data from the request 
$json = file_get_contents('php://input');
// Converts it into a PHP object 
$data = json_decode($json, true);

 echo $data['requestCode'];
 echo $data['mobileNo'];
 echo $data['password'];

评论

0赞 theking2 4/21/2022
这就是答案。PHP 只解释 formData 形式的 body,而不是 JSON。@enamul-haque的代码解决了这个问题。
4赞 JonathanC 8/29/2021 #10

如果上述所有答案仍然导致您进入 POST 的 NULL 输入,请注意 localhost 设置中的 POST/JSON,这可能是因为您没有使用 SSL。(前提是您是带有 tcp/tls 的 HTTP 而不是 udp/quic)

PHP://input 在非 https 上将为 null,如果您在流程中有重定向,请尝试在本地配置 https 作为标准做法,以避免安全/XSS 等各种问题

评论

2赞 eDriven_Levar 10/13/2021
这救了我。没有发布到 https:// 如果您发布到 http:// 它不再适用于 PHP < 7.0
1赞 Daan Bakker 12/15/2021 #11

由于 php 魔术引号,解码可能会失败(并返回 null)。

如果打开了魔术引号,则从 _POST/_REQUEST/etc. 读取的任何内容都将具有特殊字符,例如也是 JSON 转义的一部分。尝试此转义字符串将失败。这是一项已弃用的功能,某些托管商仍处于打开状态。"\json_decode(

检查魔术引号是否打开,如果打开,则将其删除的解决方法:

function strip_magic_slashes($str) {
    return get_magic_quotes_gpc() ? stripslashes($str) : $str;
}

$operation = json_decode(strip_magic_slashes($_POST['operation']));

评论

2赞 ruleboy21 7/14/2023
get_magic_quotes_gpc()在 PHP 7.4 中已弃用,并从 PHP 8.0 版本开始删除
0赞 Ishmael Mavor Raines 9/8/2022 #12

当我尝试在PHP中检索已发布的数据时,我得到了“null”

{
    "product_id": "48",
    "customer_id": "2",  
    "location": "shelf",  // shelf, store <-- comments create php problems
    "damage_types":{"Pests":1, "Poke":0, "Tear":0}
     // "picture":"jhgkuignk"  <-- comments create php problems
}

您应该避免注释 JSON 代码,即使它没有显示任何错误

1赞 jeremysawesome 4/5/2023 #13

我也遇到了这个问题,结果相同。

  1. $_POST是空的。
  2. file_get_contents('php://input')是空的
  3. 甚至数组也是空的。$_REQUEST

背景:

我正在发布到目录中的文件,即index.phpajax/postajax/post/index.php

我使用的网址是 .https://example.com/ajax/post

问题:

该数组为空,因为服务器使用 301 重定向将我的请求从 移动到 。请注意尾部斜杠。 重定向发生了,但发布的正文没有随之而来。$_POSThttps://example.com/ajax/posthttps://example.com/ajax/post/

解决方案

尝试在您要发布到的 URL 中添加尾部斜杠。

而不是尝试使用https://example.com/ajax/posthttps://example.com/ajax/post/