javascript unescape like php function
March 29th, 2005
when you start dealing with languages (i.e. chinese) that require 8 bit encoding or more, you will learn about all the wonderful jazz of utf8, unicode, ISO etc. i was looking all over for a php function that does what javascript unescape does. normally rawurldecode would work, but…
not on utf8 strings. my problem is i saved my chinese into a browser cookie and then i wish php to read and translate it to unicode for the browser to display.
for example, i’d like php to translate the utf8 string:
%u6211%u662F%u8C46%u8C46
to:
我是豆豆
to display:
我是豆豆
it ran into problems and i couldn’t find a way for php to translate that. thank god for this nifty function
3 Comments Leave a Comment
March 29th, 2005 at 12:47 pm March 29th, 2005 at 12:51 pmI was searching for something similar and found your blog… but the link you provided is dead - could you please resurrect it? 


Did you write that function yourself? *is amazed*