PHP foreach循环JSON

时间:2013-11-25 10:48:01

标签: php json

我知道在这个网站上有类似的数百个问题,但我无法让我的代码正常工作......

我有这个JSON

{
"version":"1.0.0",
"buildDate":20131029,
"buildTime":165127,

"lockPath":"..\\var\\lock",
"scriptPath":"..\\var\\lock",
"connections":
[
{
    "name":"o016561",
    "bez":"GEW-NRW",
    "type":"OVPN"
},
{
    "name":"o016482",
    "bez":"GEW-BW",
    "type":"OVPN"
},
{
    "name":"o019998",
    "bez":"GEW-SH",
    "type":"OVPN"
}
]}

如何访问“name”值以检查是否存在名称相同的现有文件? 我试过了

$json_config_data = json_decode(file_get_contents($json_path,true));

    foreach($json_config_data->connections as $connectionName)
    {
        if($connectionName->name == $fileName)
        {
            $status = 1;
        }
        else
        {
            $status = 0;
        }
    }

但我总是$status = 0 ... 我认为有一个简单的解决方案,但我对PHP很新,所以我很乐意提供任何帮助。 谢谢你的建议

2 个答案:

答案 0 :(得分:5)

您正在为每次迭代重置$status的值,这意味着最后一个连接必须是正确的。您可能正在寻找break声明。

$json_config_data = json_decode(file_get_contents($json_path,true));

$status = 0; //Default to 0
foreach($json_config_data->connections as $connectionName)
{
    if($connectionName->name == $fileName)
    {
        $status = 1;
        break; //End the loop
    }
}

答案 1 :(得分:2)

如果最终名称符合您的要求,这只会导致$status == 1;否则,您需要将$status设置回0。当你找到匹配时,你应该突破循环:

$status = 0;

foreach ($json_config_data->connections as $connectionName) {
    if ($connectionName->name == $fileName) {
        $status = 1;
        break; // this breaks out of the foreach loop
    }
}