0

我正在从 URL 中提取 JSON 数据并尝试显示仅显示名称的列表。

在某种程度上,如果我知道每次都会返回 X 数量的结果,这将非常容易循环。但是,返回的结果将在 0 到 50+ 之间变化。

我已经做了很多搜索,都说“只使用 json_decode”……但情况并非如此。

我有以下 JSON:

{
    "ACK": "SUCCESS",
    "ERROR": null,
    "AGENT": {
        "has_results": 1,
        "agents": [
            {
                "display_name": "Alex",
                "time_in_state": "5214",
                "state": "Aux",
                "callstakentoday": null,
                "callsouttoday": null,
                "agntpriority": null,
                "skill_num": "76"
            },
            {
                "display_name": "Bill",
                "time_in_state": "6312",
                "state": "Aux",
                "callstakentoday": null,
                "callsouttoday": null,
                "agntpriority": null,
                "skill_num": "76"
            },
            {
                "display_name": "Carrie",
                "time_in_state": "5982",
                "state": "Aux",
                "callstakentoday": null,
                "callsouttoday": null,
                "agntpriority": null,
                "skill_num": "76"
            },
            {
                "display_name": "David",
                "time_in_state": "4226",
                "state": "Aux",
                "callstakentoday": null,
                "callsouttoday": null,
                "agntpriority": null,
                "skill_num": "76"
            }
        ]
    },
    "SKILL": {
        "has_results": 1,
        "num_skills": 1,
        "skills": [
            {
                "display_name": "Phone Skills",
                "skill_num": "76",
                "callsinqueue": "0",
                "callstoday": "9",
                "abandtoday": "0",
                "lwt": "0",
                "ewt": "0",
                "servicelvl": "100",
                "avgspeedans": "6",
                "talktime": "289"
            }
        ]
    },
    "TIME": 1383766541
}

从我阅读的示例和文档中,创建了以下代码:

<?php
    $url="http://myjsonurl.local";

    $json = file_get_contents($url);
    //echo $json; 

    $json = json_decode($json);
    foreach($json as $item->display_name)
    {
            echo $item->agents->display_name;
    }
?>

我的最终目标是列出唯一的名称列表,然后我可以将其显示在备用网页中。

所以我的问题是......我如何阅读这个页面并很好地格式化数据(也许我可以打印一个数组?)以便我将来可以使用它?

4

4 回答 4

3

您的代码中有以下内容:

foreach($json as $item->display_name)    

这是不正确的,不会做你想做的事。正如您通过执行 a 所看到的print_r($json),名称位于 中$json->AGENT->agents,因此您需要遍历这些项目,然后遍历display_name使用箭头语法 ( $item->display_name)。获得显示名称后,您可以将其推送到数组中,并根据需要使用它。

您的循环应如下所示:

$names = array(); // initialize empty array
foreach($json->AGENT->agents as $item)
{
    $names[] = $item->display_name;
}

print_r($names); // see the array contents

输出:

Array
(
    [0] => Alex
    [1] => Bill
    [2] => Carrie
    [3] => David
)

演示。

注意:如果您事先不知道 JSON 对象的结构,则可以使用嵌套foreach循环来检索名称。

于 2013-11-07T17:52:30.433 回答
1

您要迭代的数组是$json->AGENT->agents. 另外,您的foreach语法错误。

尝试:

foreach($json->AGENT->agents as $item)
{
        echo $item->display_name;
}
于 2013-11-07T17:50:30.253 回答
0

如果要将 JSON 数据作为数组而不是对象获取,请json_decode($json, true)改用。这告诉函数将其作为关联数组返回,您可以在此处阅读:http: //php.net/manual/en/function.json-decode.php

于 2013-11-07T17:49:22.660 回答
0

您的foreach循环中有错误。

foreach($json as $item->display_name)
    {
            echo $item->agents->display_name;
    }

$item 不是对象,您实际上是在尝试在此行中访问无对象 ($item) 的属性“display_name”

foreach($json as $item)
于 2013-11-07T17:51:13.607 回答