Best way to get a file from remote server and copy to local server using php

Jizbo Jonez picture Jizbo Jonez · May 13, 2013 · Viewed 24.2k times · Source

Let's say there is a file on a remote server that can be downloaded without any restrictions, ie. you can put the direct link to the file in your browser and it downloads the file, for example http://www.remotesite.com/video.avi will prompt your browser to download that file. Using php, what is the best way to grab that file and upload it to my local server without the file being downloaded to my PC at all, which is what happens with phpBB if you put a url in the file upload form? An example of the code needed would also be appreciated. Thanks

Answer

Baba picture Baba · May 13, 2013

Just use copy

$source = "http://www.remotesite.com/video.avi";
$dest = "video.avi";
copy($source, $dest);