Rate this script:  I Love it  /   I Hate it

FTP to get a file from within PHP


Code


$conn_id = ftp_connect("www.yoursite.com");
$login_result = ftp_login($conn_id, "username", "password");

if ((!$conn_id) || (!$login_result)) {
echo "FTP connection has failed!";
exit;
} else {
echo "Connected";
}

// get the file
$local = fopen("local.txt","w");
$result = ftp_fget($conn_id, $local,"httpdocs/trlog.txt", FTP_BINARY);

// check upload status
if (!$result) {
echo "FTP download has failed!";
} else {
echo "Downloaded ";
}

// close the FTP stream
ftp_close($conn_id);
 

 

 
FTP to get a file from within PHP scripts | FTP to get a file from within PHP snippet | FTP to get a file from within PHP example | FTP to get a file from within PHP tutorial | FTP to get a file from within PHP code