What is the PHP equivalent of the following Java function?
str = org.apache.commons.lang.StringEscapeUtils.unescapeJava(str);
This function is present in Apache Commons Lang and following is the description of the function
Unescapes any Java literals found in the String. For example, it will turn a sequence of '\' and 'n' into a newline character, unless the '\' is preceded by another '\'.
Edit
One solution I found is this
echo json_decode('"' . $str . '"');
But I think there should be some other elegant solution to it.
Edit 2
As @julp suggested, transliterate is another option, but it works only on PHP 5.4 and higher. Unfortunately I am still on PHP 5.3 and need a solution that will work in PHP 5.3
"– Dale Dec 10 '12 at 14:43\u2002etc. – Sudar Dec 10 '12 at 14:45\uxxxx-escape sequences – Esailija Dec 10 '12 at 14:48var_dump(json_decode('"\u2002"'));will return a 3 byte string that correctly represents those unicode bytes. – GoogleGuy Dec 10 '12 at 14:52