Saving image from PHP URL

后端 未结 12 1729
日久生厌
日久生厌 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:17

    $img_file='http://www.somedomain.com/someimage.jpg'
    
    $img_file=file_get_contents($img_file);
    
    $file_loc=$_SERVER['DOCUMENT_ROOT'].'/some_dir/test.jpg';
    
    $file_handler=fopen($file_loc,'w');
    
    if(fwrite($file_handler,$img_file)==false){
        echo 'error';
    }
    
    fclose($file_handler);
    

提交回复
热议问题