1

我有以下数组:

outerarray{
            "id": "20154", 
            "from": {
              "name": "xyz", 
              "id": "10004"
            }}

现在我如何访问元素名称

4

2 回答 2

2

它是JSON,首先使用解码json_decode()然后访问:

$arr = json_decode($yourjson, true);
echo $arr['from']['name']; // xyz

或者

$arr = json_decode($yourjson);
echo $arr->from->name; // xyz

http://php.net/manual/en/function.json-decode.php

于 2012-06-27T06:39:10.777 回答
0

你必须使用json_decode()

$tab = json_decode($outerarray);
echo $tab['id']; //display 20154
于 2012-06-27T06:38:52.640 回答