dqsvnsad79721 2013-07-09 13:37
浏览 118
已采纳

来自csv的PHP file_get_contents()和file_put_contents

I'm trying to write a script that will allow for a two column .csv file (1st column with names, 2nd with image urls) to be read, and the images to then be saved to my hard drive using the first column as the saved file name. I'm able to get some images to save (all the files are created, but some are missing data). The naming convention works the way I want it to, but I need to get all of the files. Anyone care to take a look? Might be worth mentioning that I'm using MAMP but the image addresses in the .csv are all valid (I echoed out the image address with tags, so I know they work).

<?php
    //header('Content-Description: File Transfer');
    //header('Content-Disposition: attachment; filename ='
    //Eli's 2 column CSV grab-n-save file

    $file = 'Random.csv'; //put file path of .csv here
    $buffer = file_get_contents($file);
    //print_r($buffer);
    $pattern = '/[,
]/';

    $catch = preg_split($pattern, $buffer);
    $keep_track = 0;

    foreach($catch as $value)
    {
        if ($keep_track%2 == 0)
        {
        //if first column is sku
            $name = $value;
            $keep_track += 1;
        }
        elseif ($keep_track %2 == 1)
        {
            //if an image
            $name = str_replace(' ', '',$name);

            //Change pathname to MAMP specs
            $name2 =  '/Applications/MAMP/htdocs/picturegrab' . $name . '.jpg';

            file_put_contents($name2, file_get_contents($value), FILE_APPEND);
            //echo $value . '<br/>';
            $keep_track += 1;

            echo $name2 . '<br/>' . '<img src='.$value.'><br/>';
        }

    }
?>
  • 写回答

2条回答 默认 最新

  • doulianxi0587 2013-07-09 13:49
    关注

    some logic

    $file = fopen('Random.csv');
    $dir = '/Applications/MAMP/htdocs/picturegrab/';
    while (list($name, $img_link) = fgetcsv($file)) {
      $name = str_replace(" ", "", $name);
      copy($img_link, $dir.$name.'.jpg');
    }
    

    updated my example to make it more responsive

    also thx to Sam Green with his coment

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料