foreach只保存第一个数组,即使print_r正确打印出错误的结果

时间:2018-01-22 01:06:12

标签: php arrays json foreach

我正在构建一个从外部源下载图像的函数,然后将每个产品的id写入已下载的json文件路径,

下载循环正常工作,但在尝试保存产品ID&图像路径到文本文件只保存第一条记录。

我尝试在使用file_put_contents函数之前打印输出,结果是得到了正确的结果。我想知道为什么只有第一个结果被保存不是全部?

我几乎整天都在努力想出来,但没有运气。任何帮助将不胜感激。

这是我的代码:

            $url = 'product-test2.json'; // path to  JSON file
            $data = file_get_contents($url);
            $characters = json_decode($data, true); 
            $i = array_column ($characters , 'Id');

            foreach ( $i as $value => $productid){
            include 'login.php';
            $url = "http://xxxx.com/api/products/image/";
            $url .= implode($matches [0]); // get the token form login.php
            $url .= '/' . $productid ;    //product id 
            // echo $url . '<br>';
            $opts = array ('http' => array ( 
                         'methos' => 'GET',
                         'header' => 'Content-typpe: application/json',
                         )
            );
            $context = stream_context_create ($opts);
            $urlImage = file_get_contents ($url , false , $context);
            $urlImage = substr_replace ($urlImage , "",-1);
            $urlImage = substr ($urlImage , 1);
            $fopenpath = 'C:\\xampp\htdocs\\test\\api\\images\\'   ;
            $fopenpath .= $productid . '.jpg';        
            $fp = fopen ( $fopenpath, 'w');
            $c = curl_init ($urlImage);    
            curl_setopt ($c , CURLOPT_FILE , $fp);
            curl_setopt ($c , CURLOPT_HEADER, 0);
            curl_setopt ($c , CURLOPT_POST, false);
            curl_setopt ($c , CURLOPT_SSL_VERIFYPEER, false);
            $rawdata = curl_exec ($c);
            fwrite ($fp, $rawdata);
            fclose ($fp);
            //
            $result3= ["id" => $productid ,"image_path" => $fopenpath]  ; 


            $image_file = "images.json";
            $output = json_encode ($result3);   
                print_r ($output);
            file_put_contents ($image_file , $output );  


            };

,这是print_r($ result3);

的结果
 {"id":2977,"image_path":"C:\\xampp\\htdocs\\test\\api\\images\\2977.jpg"} {"id":2981,"image_path":"C:\\xampp\\htdocs\\test\\api\\images\\2981.jpg"} {"id":3009,"image_path":"C:\\xampp\\htdocs\\test\\api\\images\\3009.jpg"} {"id":3018,"image_path":"C:\\xampp\\htdocs\\test\\api\\images\\3018.jpg"} {"id":11531,"image_path":"C:\\xampp\\htdocs\\test\\api\\images\\11531.jpg"}

正如您所看到的,Print_r是正确的,我想要做的就是将输出保存到文件中,目前这里是file_put_contents只有一个数组的结果:

{"id":11531,"image_path":"C:\\xampp\\htdocs\\test\\api\\images\\11531.jpg"}

你可以帮忙告诉我我做错了什么我已经花了很多时间在这上面:)

1 个答案:

答案 0 :(得分:1)

file_put_contents与打开,写入和关闭文件相同,这在foreach循环中没有任何意义。如果你真的想要使用它,我认为你可以添加FILE_APPEND标志,这将阻止它一遍又一遍地覆盖自己。

另一种选择是在foreach循环之前使用&#39; a&f;标志,它将创建文件,然后保持附加行,而不是每个循环擦除文件内容。 (并在foreach之后fclose。)