Skip to content

Instantly share code, notes, and snippets.

@mattattui
Created March 21, 2011 10:12
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattattui/879252 to your computer and use it in GitHub Desktop.
Save mattattui/879252 to your computer and use it in GitHub Desktop.
Convert HTML entities to XML
<?php
$out = htmlspecialchars(
html_entity_decode($in, ENT_QUOTES, 'UTF-8'),
ENT_QUOTES, 'UTF-8'
);
?>
@mattattui
Copy link
Author

@mikedfunk
Copy link

Cool, I didn't realize you could embed these.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment