Skip to content

Instantly share code, notes, and snippets.

@hausl
Last active February 22, 2016 20:16
Show Gist options
  • Save hausl/4ec7e4889d3b6c1ef4e9 to your computer and use it in GitHub Desktop.
Save hausl/4ec7e4889d3b6c1ef4e9 to your computer and use it in GitHub Desktop.
<?php
// http://www.php.de/830653-post27.html
function escHTML ($s) {
return htmlspecialchars(
$s,
ENT_QUOTES | ENT_HTML5 | ENT_DISALLOWED | ENT_SUBSTITUTE,
'UTF-8'
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment