-1

如何在php中读取下面的json数据?
我有“ $json = json_decode($data,true);我试过” $json->{'screenShareCode'}; “但是给我一个错误吗?:(

    数组(5){
      ["screenShareCode"]=>
      字符串(9)“887874819”
      ["appletHtml"]=>
      字符串(668)“”
      [“演示者参数”]=>
      字符串(396)“aUsEdyygd6Yi5SqaJss0=”
      ["viewerUrl"]=>
      字符串(65)“http://api.screenleap.com/v2/viewer/814222219?accountid=myid”
      [“起源”]=>
      字符串(3)“API”
    }

4

4 回答 4

1

您显示的输出不是 json。它似乎是一个print_r的数组。

http://json.org/example

于 2013-11-11T08:26:11.543 回答
0

您正在寻找 json_encode ( http://de2.php.net/json_encode )

于 2013-11-11T08:25:36.720 回答
0

您的输出是常规数组而不是 JSON,因此您可以将其作为常规 PHP 数组访问:

$x = $array['screenShareCode']
于 2013-11-11T08:26:35.067 回答
0

您发布的是一个数组,而不是一个对象。因为您传递json_decode了 的第二个参数true,所以它以关联数组而不是对象进行响应。

要访问关联数组的属性,您可以执行类似$json['screenShareCode'].

于 2013-11-11T08:28:46.047 回答