İşte basit dosya işlemlerini kullanarak çözüm olurdu:
<?php
$file = "http://www.domain.com/thisisthefileiwant.zip";
$hostfile = fopen($file, 'r');
$fh = fopen("thisisthenameofthefileiwantafterdownloading.zip", 'w');
while (!feof($hostfile)) {
$output = fread($hostfile, 8192);
fwrite($fh, $output);
}
fclose($hostfile);
fclose($fh);
?>
Dizin etkin yazma izinlerine sahip olduğundan emin olun. (CHMOD)
Bu nedenle, ($ $ koymak olsun) almak için bir yedek olacaktır:
function fetch($get, $put) {
$hostfile = fopen($get, 'r');
$fh = fopen($put, 'w');
while (!feof($hostfile)) {
$output = fread($hostfile, 8192);
fwrite($fh, $output);
}
fclose($hostfile);
fclose($fh);
}
Bu yardımcı umut! =)
Cheers,
KrX