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
char set problem
Moderator: General Moderators
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
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.
PHP will not natively support unicode until PHP 6.
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
You shou..you might find
interestinghttp://www.joelonsoftware.com/articles/Unicode.html wrote:The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!)