Skip to content

Instantly share code, notes, and snippets.

@chaosmail
Created March 28, 2013 16:38
Show Gist options
  • Save chaosmail/5264744 to your computer and use it in GitHub Desktop.
Save chaosmail/5264744 to your computer and use it in GitHub Desktop.
UTF-8 Decode HTML-String
function decodeHtml($string) {
return stripslashes(html_entity_decode( $string, ENT_QUOTES, "utf-8" ));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment