我有一个文件,让我们说位于www.sample.com的sample.xml
我想要一个脚本,比如,位于www.download.com的download.php
download.php下载sample.xml并将其存储在download.com的ftp
中我有这个代码,但它会下载到用户本地计算机
$file_url = 'http://sample.com';
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename='sample.xml'");
readfile($file_url);
有人可以建议直接下载到主机ftp吗?
答案 0 :(得分:0)
$sample = file_get_contents('http://www.sample.com/sample.xml');
file_put_contents('sample.xml', $sample);
这样做