Skip to content

Instantly share code, notes, and snippets.

@alitayfur
Forked from aeurielesn/util.php
Created November 25, 2017 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alitayfur/39b6efe28c22a87abbd30efe471bba9e to your computer and use it in GitHub Desktop.
Save alitayfur/39b6efe28c22a87abbd30efe471bba9e to your computer and use it in GitHub Desktop.
Decode Unicode strings in PHP
<?php
#source: http://stackoverflow.com/questions/2934563/how-to-decode-unicode-escape-sequences-like-u00ed-to-proper-utf-8-encoded-char
function replace_unicode_escape_sequence($match) {
return mb_convert_encoding(pack('H*', $match[1]), 'UTF-8', 'UCS-2BE');
}
function unicode_decode($str) {
return preg_replace_callback('/\\\\u([0-9a-f]{4})/i', 'replace_unicode_escape_sequence', $str);
}
$str = unicode_decode('\u00e9');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment