使用PHP接收JSON POST

我试图在支付接口网站上接收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"
}
}
}

支付网站日志显示一切正常。有什么问题吗?

609799 次浏览

试着;

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

从您的json和代码中,看起来您已经正确地拼写了单词操作,但它不是在json中。

编辑

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

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

使用$HTTP_RAW_POST_DATA代替$_POST

它会原样为您提供POST数据。

稍后你可以使用json_decode()来解码它。

阅读文档:

一般来说,应该使用php://input而不是$HTTP_RAW_POST_DATA。

php手册

值得指出的是,如果你使用json_decode(file_get_contents("php://input"))(其他人已经提到过),如果字符串是有效JSON,则会失败。

可以通过首先检查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);
注意,上面删除strlen($json_params)可能会导致微妙的错误,因为json_last_error()在传递null或空白字符串时会发生变化,如下所示: http://ideone.com/va3u8U < / p >

如果你已经设置了像$_POST['eg']这样的参数,并且你不想改变它,简单地像这样做:

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

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

$data = file_get_contents('php://input');
echo $data;

这对我很管用。

我想发布一个答案,也使用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)
< br > < p >很晚了。 看来,(OP)已经试过了所有给他的答案 不过,如果你(OP)没有收到传递给".PHP"文件,错误可能是,不正确的URL 检查你是否喊对了“。php"”文件。< br > (拼写错误或URL中的大写字母)
而且 most important
检查你的URL是否有" "(secure)在"http"后面。
例子:< / p >
"http://yourdomain.com/read_result.php"

应该是

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

或任意一种方式 添加或删除" "

你可以用bellow像.. 发布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'];

如果以上所有答案仍然导致POST输入为NULL,请注意在本地主机设置中使用POST/JSON,这可能是因为您没有使用SSL。(前提是你使用tcp/tls而不是udp/quic)

//input在非https上将为空,如果你在流中有重定向,尝试在本地配置https作为标准实践,以避免安全/xss等各种问题

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

如果magic quotes打开,则从_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']));

我得到了“null”;当我试图检索一个发布的数据在PHP

{
"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代码,即使它没有显示错误