Page 1 of 1
char set problem
Posted: Tue Mar 06, 2007 12:18 am
by itsmani1
I am having char set problem i want to know does php support unicodes?
for some character i am getting "?" i wanted to know if can replace them?
thank you
Posted: Tue Mar 06, 2007 12:34 am
by feyd
I'm pretty sure this question has been asked a few times. In fact, you, yourself, have been told about
character encoding issues previously.
PHP will not natively support unicode until PHP 6.
Posted: Tue Mar 06, 2007 1:01 am
by volka
But that doesn't mean you can't handle unicode in php at all. php does not display unicode, that's the client. I.e. a ? is a problem your browser has with displaying a character. It
might be the result of a php script trying to treat a unicode string/sequence/whatever as a plain-old-1byte-string. Might be but doesn't have to be. Hard to tell with this little information.
You shou..you might find
interesting