假设远程服务器上有一个文件可以没有任何限制地下载,即。您可以在浏览器中直接链接到该文件并下载该文件,例如http://www.remotesite.com/video.avi将提示您的浏览器下载该文件。使用php,获取该文件并将其上传到我的本地服务器的最佳方法是什么,而文件根本不会下载到我的PC上,如果你在文件上传表单中添加了一个url,那么phpBB会发生什么?还需要了解所需代码的示例。感谢
答案 0 :(得分:23)
只需使用copy
$source = "http://www.remotesite.com/video.avi";
$dest = "video.avi";
copy($source, $dest);
答案 1 :(得分:3)
$remote_file_contents = file_get_contents('http://remote_url/file/with.extension');
//Get the contents
$local_file_path = 'your/local/path/to/the/file/with.extension';
file_put_contents($local_file_path, $remote_file_contents);
//save the contents of the remote file
答案 2 :(得分:2)
您无需浏览器下载即可读取和写入文件
<?php
$file = 'http://www.remotesite.com/video.avi';
// read the file from remote location
$current = file_get_contents($file);
// create new file name
$name = "path/to/folder/newname.avi";
// Write the contents back to the file
file_put_contents($file, $current);