A
Size: a a a
A
Р
A
Р
v
Р
v
Р
v
Р
v
v
Р
v
function downloadFile ($url, $path) {
$stream = fopen ($url, "rb");
if ($stream) {
$file = fopen ($path, "wb");
if ($file){
while(!feof($stream)) {
fwrite($file, fread($stream, 4096 ));
}
fclose($file);
}
fclose($stream);
}
}
v
Р
jd
v
Р
Р