Saving image from PHP URL

后端 未结 12 1734
日久生厌
日久生厌 2020-11-21 17:10

I need to save an image from a PHP URL to my PC. Let\'s say I have a page, http://example.com/image.php, holding a single \"flower\" image, nothing else. How ca

12条回答
  •  日久生厌
    2020-11-21 18:14

    Here you go, the example saves the remote image to image.jpg.

    function save_image($inPath,$outPath)
    { //Download images from remote server
        $in=    fopen($inPath, "rb");
        $out=   fopen($outPath, "wb");
        while ($chunk = fread($in,8192))
        {
            fwrite($out, $chunk, 8192);
        }
        fclose($in);
        fclose($out);
    }
    
    save_image('http://www.someimagesite.com/img.jpg','image.jpg');
    

提交回复
热议问题