文件操作后重新编码json

时间:2012-05-28 10:42:46

标签: php json file-io

我在将json重新编码为其格式时遇到了一些问题。我想要实现的是,在.json文件上传中,修改它以符合某些标准。

问题是,当我尝试修改文件上的图像src并将其编码回json时,尽管foreach循环中的数组正确打印出来,但生成的新文件没有任何内容!

很高兴你能给我一点帮助

function prepareImages($file,$url,$article)
{

    $string = file_get_contents($file);
    $json = json_decode($string,true);
    $value = array();
    //$array = $json['elements'];
            //$imgArray = array();
    /* if(['type'] == "image")
    {
        array_push($json['elements']['src'],$array);
    } */

    foreach($json['elements'] as $value)
    {
        if($value['type'] == "image")
        {
                        $arr = explode('\\', $value['src']);
                        $count = count($arr);
                        $img = $arr[$count-1];
                        $src = $url.'res/'.$article.'/'.$img;
                        $value['src'] = $src;

                        //print_r($json);
        }
                    //This prints all the values correctly
                    print_r($value);


    } 
                    $json = $value;
                    $string = json_encode($json);

            file_put_contents($file,$string);


}

1 个答案:

答案 0 :(得分:0)

根据json_encode()文档,该函数会转义正斜杠,尝试这样做:

$value['src'] = str_replace('\\/', '/', $src)