file_get_contents ile dosyayı alıp file_put_contents ile dosyaya yazabilirsiniz.


$dosya= file_get_contents("http://www.baskasite.com/merhabadunya.mp3");

if(file_put_contents("merhabadunya.mp3",$dosya)){
echo "Dosya Yazıldı.";
}else{
echo "Dosya yazılamadı.";
}