php自动下载远程服务器上文件的代码

发布时间:2020-04-09编辑:脚本学堂
php自动下载远程服务器上文件的代码,有需要的朋友可以看看。

php自动下载远程服务器上文件的代码,有需要的朋友可以看看。

复制代码 代码如下:

<form method="post">
<input name="url" size="50" />
<input name="submit" type="submit" />
</form>

复制代码 代码如下:

< ?php
// maximum execution time in seconds
set_time_limit (24 * 60 * 60);
if (!isset($_POST['submit'])) die();
// folder to save downloaded files to. must end with slash
$destination_folder = 'temp/';
 
$url = $_POST['url'];
$newfname = $destination_folder . basename($url);
$file = fopen ($url, "rb");
if ($file) {
$newf = fopen ($newfname, "wb");
if ($newf)
while(!feof($file)) {
fwrite($newf, fread($file, 1024 * 8 ), 1024 * 8 );
}
}
if ($file) {
fclose($file);
}
if ($newf) {
fclose($newf);
}
?>