dongmeixi5311 2019-06-08 16:31
浏览 75

解析POST发送的JSON数据时,PHP中的Strange Object输出

I am a newbie with php and I aim to send JSON data from Particle Cloud (IoT cloud) to my Ubuntu 18.04 server with Apache2 and PHP7. I am writing php script that would parse JSON data but I have issues with accessing values of POSTed data

I have tried to follow different examples explaining how to convert $_POST array using json_decode() but I still have not figured out why it does not work

My file data.json is with JSON data

{"key1":"value1", "key2":"value2"}

my parser.php script is

<?php
$incoming = $_POST;
var_dump($incoming);

$data = json_decode(json_encode($var1), true);
var_dump($data);
?>

In Ubuntu 18.04 terminal I test dumped variables with curl

curl -v -X POST 'Content-Type: application/json;charset=UTF-8' -d data.json http://localhost/parser.php

My results

for $incoming
    array(1){
    ["{"key1":"value1","key2":"value2"}"]=>
    string(0) ""
    }

for $data
    object(stdClass)#1 (1) {
    ["{"key1":"value1","key2":"value2"}"]=>
    string(0) ""
    }

But I expect something like {"key1":"value1","key2":"value2"}, not array or Object in []

I can't access values by keys. For example,

var_dump($data['key1']);

brings NULL

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥100 任意维数的K均值聚类
    • ¥15 stamps做sbas-insar,时序沉降图怎么画
    • ¥15 unity第一人称射击小游戏,有demo,在原脚本的基础上进行修改以达到要求
    • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
    • ¥15 关于#Java#的问题,如何解决?
    • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
    • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
    • ¥15 cmd cl 0x000007b
    • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
    • ¥500 火焰左右视图、视差(基于双目相机)