<?php ############################################### # # # Fazendo Download de arquivos remotos # # leonardo_Giori(BOZO){ # # return "www.gambiarra.com.br"; # # } # # # ############################################### function remoteDownload($file,$newFile=""){ if($newFile==""){ $newFile = substr($file,strrpos($file,"/")+1); } $handle = @fopen($newFile, "w"); $content = @file_get_contents($file); if(@fwrite($handle, $content)){ return true; }else{ return false; } fclose($handle); } //Exemplos //remoteDownload("http://phpbrasil.com/images/unified_logo.gif","Logo.gif"); if(remoteDownload("http://phpbrasil.com/contribute/scripts/index.php")){ echo "Download efetuado com sucesso!"; }else{ echo "Erro ao baixar arquivo!"; } ?>