faq 내용관리 팝업관리 그누보드로 이동

This commit is contained in:
chicpro
2014-02-14 13:37:05 +09:00
parent 3897a451f6
commit 989e5d6fdd
24 changed files with 16 additions and 1441 deletions

View File

@ -2550,4 +2550,12 @@ function check_input_vars()
}
}
}
// HTML 특수문자 변환 htmlspecialchars
function htmlspecialchars2($str)
{
$trans = array("\"" => "&#034;", "'" => "&#039;", "<"=>"&#060;", ">"=>"&#062;");
$str = strtr($str, $trans);
return $str;
}
?>