Excuse me ! How did using to change sent mail's Code!

2008-03-03 Thread ghostjackyo
Excuse me ! Hod did changed the file with sent mail . I want use the file with .txt file. But the .txt file was Big-5 Code. I want to changed to UTF-8 Code. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Cake PHP

Re: Excuse me ! How did using to change sent mail's Code!

2008-03-03 Thread b logica
You might need to use iconv to convert the file to UTF-8. See: http://www.gnu.org/software/libiconv/documentation/libiconv/iconv.1.html There's a PHP library available: http://ca.php.net/iconv The format from the command line is: iconv -f BIG5 -t UTF-8 original_file.txt utf8_file.txt You