リモートサーバーに、制限なしでダウンロードできるファイルがあるとします。ファイルへの直接リンクをブラウザに配置すると、ファイルがダウンロードされます。たとえば、http://www.remotesite.com/video.aviでは、ブラウザにそのファイルをダウンロードするように求められます。php を使用して、そのファイルを取得し、ファイルを PC にまったくダウンロードせずにローカル サーバーにアップロードする最良の方法は何ですか? 必要なコードの例もいただければ幸いです。ありがとう
質問する
25098 次
3 に答える
4
$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
于 2013-05-13T08:56:30.927 に答える