1

Is there a function to convert Greek characters to UTF8 in PHP? As I've read utf8_encode only supports ISO-8859-1 (latin) character set, and you need to recompile php to include other character set and/or functions to do the conversion.

flag

1 Answer

0

You can try mb_convert_encoding function i.e.

mb_convert_encoding($str, "UTF-8", "ISO-8859-7");
link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.