Last active
December 18, 2015 03:39
-
-
Save ytkhs/5719703 to your computer and use it in GitHub Desktop.
htmlspecialchars は第三引数まで必ず指定する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if (!function_exists('h')) { | |
| function h($string) { | |
| /* | |
| 出力までやってしまう. | |
| @see http://koseki.hatenablog.com/entry/20120216/htmlspecialhonyarara | |
| */ | |
| echo htmlspecialchars($string, ENT_QUOTES, 'UTF-8'); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment