ユーザー定義関数で、htmlspecialcharsとか。
<?php
function html_the_escape($string) {
return htmlspecialchars($string, ENT_QUOTES);
}
?>