2010-11-05 67 views
0

我只是剛剛買了一個網域昨天(cryptum.net),我打算上傳一些文件給它。我的問題是我沒有一個好的PHP5下載腳本。我只想要一個簡單的腳本,將文件保存到用戶下載文件夾。這些文件位於網站ftp服務器上。這裏是我有這麼遠什麼是簡單的PHP文件下載腳本?

<?php 
$conn = ftp_connect("ftp://[email protected]") or die("Could not connect"); 
ftp_login($conn,"username","password"); 

//download script goes here 

ftp_close($conn); 
?> 

回答

1

它使用PHP的強大功能,流另一個非常優雅的解決方案:

<?php 
$ftp_server = 'ftp://username:[email protected]/'; 
$remote_file = 'user/directory/file'; 
$local_file = '/path/to/the/local/file'; 

file_put_contents($local_file, file_get_contents($ftp_server.$destination_file)); 
1
<?php 
//... 
//download script goes here 
ftp_get ($conn, '/destination/on/my/hardDrive', '/file/to/download'); 
//... 
?> 

,你可以使用PHP的捲曲,而不是...