我有以下数组:
outerarray{
"id": "20154",
"from": {
"name": "xyz",
"id": "10004"
}}
现在我如何访问元素名称?
我有以下数组:
outerarray{
"id": "20154",
"from": {
"name": "xyz",
"id": "10004"
}}
现在我如何访问元素名称?
它是JSON,首先使用解码json_decode()
然后访问:
$arr = json_decode($yourjson, true);
echo $arr['from']['name']; // xyz
或者
$arr = json_decode($yourjson);
echo $arr->from->name; // xyz
你必须使用json_decode()
:
$tab = json_decode($outerarray);
echo $tab['id']; //display 20154