관리 메뉴

I LOVE EJ

html_replace - HTML관련 문자 치환 본문

Web publishing/JavaScript

html_replace - HTML관련 문자 치환

BeOne 2009. 6. 10. 16:44

HTML관련 문자들을 아래와 같이 변환하여 HTML로 해석되지 않도록 합니다.

*/
function html_replace($text)
{
$text=str_replace("&","&",$text);
$text=str_replace("\"",""",$text);
$text=str_replace("<","&lt;",$text);
$text=str_replace(">","&gt;",$text);
$text=preg_replace("/&amp;(#\d{3,5};)/","&\\1",$text);

return $text;
}

=======================================================================

htmlspecialchars($text);
이것도 같은 기능을 한답니다. ^^;

이 함수의 원형(?)은
string htmlspecialchars ( string string [, int quote_style [, string charset]] )
이고 quote_style에는 다음을 쓸 수 있습니다.

ENT_COMPAT : 겹따옴표는 &quot;로, 홑따옴표는 그대로. * 기본값
ENT_QUOTES : 겹따옴표는 &quot;로, 홑따옴표는 '로.
ENT_NOQUOTES : 모든 따옴표를 그대로