PDA

View Full Version : مشکل در ریموت دانلود



smart_boy
یک شنبه 16 شهریور 1393, 06:49 صبح
سلام
یک لیست از فایلهایی که بروی سایت دیگری قرار داره رو میخوام به هاست انتقال بدم،ولی فایل آخری فقط روی هاست منتقل میشه. دوستان کسی میدونه علتش چی هست؟

فایل متنی حاوی لیست فایلها
webdictionary.txt :
http://site---.com//3-D (http://site.com//3-D) Tic-Tac-Toe.zip
http://site---.com/3-D (http://site.com/3-D) Tic-Tac-Toe (2).zip
http://site--.com/A-Team (http://site.com/A-Team) (Prototype).zip


فایل php:

download.php:

<?php
$myfile = fopen("webdictionary.txt", "r") or die("Unable to open file!");
// Output one line until end-of-file
while(!feof($myfile)) {
$url = fgets($myfile);
$file_name = basename($url);
$save_path = $file_name;
download_remote($url, $save_path);
}
fclose($myfile);

function download_remote($url, $save_path) {

$f = fopen($save_path, 'w+');
$handle = fopen($url, "rb");
while (!feof($handle)) {
$contents = fread($handle, 8192);
fwrite($f, $contents);
}
fclose($handle);
fclose($f);
}
?>