Skip to content

Instantly share code, notes, and snippets.

@jrignacio
Created February 2, 2010 10:42
Show Gist options
  • Save jrignacio/292574 to your computer and use it in GitHub Desktop.
Save jrignacio/292574 to your computer and use it in GitHub Desktop.
<?php
function utf8_urldecode($str) {
$str = preg_replace("/%u([0-9a-f]{3,4})/i","&#x\\1;",urldecode($str));
return html_entity_decode($str,null,'UTF-8');;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment