Skip to content

Instantly share code, notes, and snippets.

@ytkhs
Last active December 18, 2015 03:39
Show Gist options
  • Select an option

  • Save ytkhs/5719703 to your computer and use it in GitHub Desktop.

Select an option

Save ytkhs/5719703 to your computer and use it in GitHub Desktop.
htmlspecialchars は第三引数まで必ず指定する
<?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