Jump to content

fopen fread fwrite fclose


ElectricShaka

Recommended Posts

I am using the following code to download images from the web to my server.

$url = 'http://www.whateverurl.com/img.jpg';

$destination=fopen("myupload/newfile.jpg","w");

$source=fopen($url,"r");

while ($a=fread($source,1024)) fwrite($destination,$a);

fclose($source);

fclose($destination);

 

This works perfectly when the image is on my site. But for any image anywhere else on the web it just ends up giving me a blank image on my ftp. Can you not use the fopen if it's a different URL or something? Is there a different function I should be using? My allow_url_fopen is enabled. Any help you can offer is greatly appreciated.  ???

Link to comment
Share on other sites

Try this:

 

$url = 'http://www.whateverurl.com/img.jpg';
$source=fopen($url,"r");
while (!FEOF($a)) {
  $a = $a . fread($source,512);
}
fclose($source);

$destination=fopen("myupload/newfile.jpg","w");
fwrite($destination,$a);
fclose($destination);

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.