ggalan
02-24-2012, 10:53 PM
i am trying to read from a long list of files that are in my directory then process this list. when utf8 characters, the list comes out like this:
l’Été that show up like this ��t�
heres an example of what i have
http://bit.ly/zQrQns
this didnt do anything
$str = "l’Été";
utf8_decode($str);
echo $str;
re: utf8_encode fixed it
l’Été that show up like this ��t�
heres an example of what i have
http://bit.ly/zQrQns
this didnt do anything
$str = "l’Été";
utf8_decode($str);
echo $str;
re: utf8_encode fixed it