使用 json_encode() 时删除数组索引引用

新手上路,请多包涵

我使用 jQuery 的 datepicker 制作了一个小应用程序。我正在从如下所示的 JSON 文件中为其设置不可用日期:

 { "dates": ["2013-12-11", "2013-12-10", "2013-12-07", "2013-12-04"] }

我想检查给定的日期是否已经在此列表中,如果是则将其删除。我当前的代码如下所示:

 if (isset($_GET['date'])) //the date given
{
    if ($_GET['roomType'] == 2)
    {
        $myFile = "bookedDates2.json";
        $date = $_GET['date'];
        if (file_exists($myFile))
        {
            $arr = json_decode(file_get_contents($myFile), true);
            if (!in_array($date, $arr['dates']))
            {
                $arr['dates'][] = $_GET['date']; //adds the date into the file if it is not there already
            }
            else
            {
                foreach ($arr['dates'] as $key => $value)
                {
                    if (in_array($date, $arr['dates']))
                    {
                        unset($arr['dates'][$key]);
                        array_values($arr['dates']);
                    }
                }
            }
        }

        $arr = json_encode($arr);
        file_put_contents($myFile, $arr);
    }
}

我的问题是,在我再次对数组进行编码后,它看起来像这样:

 { "dates": ["1":"2013-12-11", "2":"2013-12-10", "3":"2013-12-07", "4":"2013-12-04"] }

有没有办法在 JSON 文件中找到日期匹配并将其删除,而不在编码后出现密钥?

原文由 d.bikov 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 401
2 个回答

使用 array_values() 解决您的问题:

 $arr['dates'] = array_values($arr['dates']);
//..
$arr = json_encode($arr);

为什么?因为您在不重新排序的情况下取消设置数组的键。因此,在此之后,将其保存在 JSON 中的唯一方法也是对密钥进行编码。但是,在应用 array_values() 之后,您将获得有序的密钥(从 0 开始),这些密钥可以在不包含密钥的情况下正确编码。

原文由 Alma Do 发布,翻译遵循 CC BY-SA 3.0 许可协议

在现有的重新索引数组的尝试中,您忽略了 array_values 的返回值。正确的是

$arr['dates'] = array_values($arr['dates']);

重建索引也应该移到 foreach 循环之外,多次重建索引没有意义。

原文由 Jon 发布,翻译遵循 CC BY-SA 3.0 许可协议

推荐问题
logo
Stack Overflow 翻译
子站问答
访问
宣传栏