Skip to content

Instantly share code, notes, and snippets.

@ron623
Created March 13, 2019 05:36
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 ron623/a4c376519f6c43e7ea97e3f9465f7c54 to your computer and use it in GitHub Desktop.
Save ron623/a4c376519f6c43e7ea97e3f9465f7c54 to your computer and use it in GitHub Desktop.
<?php
// htmlspecialchars関数を呼び出す用の関数
function e(string $str, string $charset = 'UTF-8'): string {
return htmlspecialchars($str, ENT_QUOTES | ENT_HTML5, $charset);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment