There is a .TXT file with utf8 encoding (if i'm correct) on a external FTP server. I want to download this through a php script to my own ftp server. So i wrote a script, but when i look at the .txt, i see characters with a character that should be é looks like ën. How can i do this correct? (also, if i run the same script again i want the old file being replaced with a fresh new file). This is my code:
<?php
// connecting with ftp server
$connection_id = ftp_connect('ftp.example.com');
// login with username and password
$login = ftp_login($connection_id, 'username', 'password');
// check connection
if ((!$connection_id) || (!$login)) {
echo 'FTP connection has failed.';
exit();
} else {
echo 'Connection succeeded.';
}
$local_file = 'home/file.TXT';
$server_file = '/file.TXT';
// open file
$handle = fopen($local_file, 'w+');
// try to download txt file and save it locally
if(ftp_fget($connection_id, $handle, $server_file, FTP_BINARY, 0)) {
echo 'Succesfully written to '.$local_file;
} else {
echo 'Not succesfully downloaded!';
}
// close file handler
fclose($handle);
//close the connection
ftp_close($connection_id);
?>
Btw, does anbody know how to make life easier for showing code on stackoverflow by not indenting every single line by pressing on space for four times?
$local_fileor$localfile? Anyway, the FTP transfer is agnostic of the file content, you just get whatever is in the file. It seems like the file is encoded with UTF-8, so just treat it like that. – Kerrek SB Jul 27 '11 at 12:39ctrl+K– takeshin Jul 27 '11 at 12:54