php download pictures

来源:互联网 发布:台湾衰落知乎 编辑:程序博客网 时间:2024/05/16 12:03

<?php


include "../config/test.php";


$books = new Database($db_books);


$sql = "select  pic from books ";


$data = $books->fetch_rows($sql);



foreach($data as $img) {

    $img = $img['pic'];

     $contents = file_get_contents($img);

    $index = strpos($img, "?");

    echo "index : ". $index . PHP_EOL;

    if($index) {

        $filename = substr($img, 0, $index);

    }

    $pic = APP_ROOT  . '/images/' . array_pop(explode("/", $filename));

    

    file_put_contents($pic, $contents);

    echo $pic . " download finished " . PHP_EOL;

}




0 0
原创粉丝点击