Which would be the best way to download a file from another domain in PHP? i.e. A zip file.
You may use one code line to do this:
copy(URL, destination);
This function returns TRUE on success and FALSE on failure.