problems with strtolower function
Posted
by Syom
on Stack Overflow
See other posts from Stack Overflow
or by Syom
Published on 2010-03-25T14:46:15Z
Indexed on
2010/03/25
14:53 UTC
Read the original article
Hit count: 261
php
i have some text in foreign language in my page, but when i make it lowercase, it starts to look like this...
$a = "????? ?????????"
echo $b = strtolower($a);
//returns ????? ?????????
i've set <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
could you tell me why?
thanks in advance
© Stack Overflow or respective owner