使用 PHP 接收 JSON POST

2022-08-30 05:55:40

我正在尝试在支付界面网站上接收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"
       }
    }
}

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


答案 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');

答案 2

例如,如果您已经设置了参数,例如$_POST['eg'],并且您不希望更改它,只需按如下方式操作:

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

这将为您省去将所有$ _POST更改为其他内容的麻烦,并且如果您希望删除此行,仍允许您进行正常的发布请求。


推荐