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

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


当前回答

使用$HTTP_RAW_POST_DATA代替$_POST。

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

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

其他回答

值得指出的是,如果使用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

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

这对我很管用。

当我试图在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代码,即使它没有显示错误

阅读文档:

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

在php手册中

你可以使用波纹像.. 像下面这样发布JSON

从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'];