代码之家  ›  专栏  ›  技术社区  ›  Mrugesh

在php中将formurl编码的输入数据转换为json属性

php
  •  0
  • Mrugesh  · 技术社区  · 6 年前

    我的代码如下所示:

    <?php
      $json = file_get_contents('php://input');
      $postData = json_decode($json, true);
      error_log($json);
      $orderId = $postData["orderId"]; 
      error_log("order id is".$orderId);
    
    ?>
    

    但不知何故$postData无法正确处理,因此第二个错误日志没有给出任何输出。

    0 回复  |  直到 6 年前