html_replace - HTML관련 문자를 해석되지 않도록 치환 함
로빈아빠
본문
<?
function html_replace($text)
{
$text=str_replace("&","&",$text);
$text=str_replace("\"",""",$text);
$text=str_replace("<","<",$text);
$text=str_replace(">",">",$text);
$text=preg_replace("/&(#\d{3,5};)/","&\\1",$text);
return $text;
}
=======================================================================
htmlspecialchars($text);
이것도 같은 기능을 한답니다. ^^;
이 함수의 원형(?)은
string htmlspecialchars ( string string [, int quote_style [, string charset]] )
이고 quote_style에는 다음을 쓸 수 있습니다.
ENT_COMPAT : 겹따옴표는 "로, 홑따옴표는 그대로. * 기본값
ENT_QUOTES : 겹따옴표는 "로, 홑따옴표는 '로.
ENT_NOQUOTES : 모든 따옴표를 그대로
관련링크
댓글목록
등록된 댓글이 없습니다.