在php中可以使用「htmlentities」函數轉義html標籤,該函數用於把字元轉換為HTML實體,其語法是「htmlentities(string,flags,character-set,double_encode)」。
PHP 之Html標籤轉義與反轉義
1、htmlentities()函數轉義html
2、html_entity_decode()函數反轉義html
一:htmlentities() 函數把字元轉換為HTML 實體。
提示:要把 HTML 實體轉換回字符,請使用 html_entity_decode() 函數。
提示:請使用 get_html_translation_table() 函數來傳回 htmlentities() 使用的翻譯表。
語法
htmlentities(string,flags,character-set,double_encode)
二:html_entity_decode() 函數把 HTML 實體轉換成字元。
html_entity_decode() 函數是 htmlentities() 函數的反函數。
語法
html_entity_decode(string,flags,character-set)
更多相關知識,請造訪PHP中文網!
以上是php實作html標籤的轉義的詳細內容。更多資訊請關注PHP中文網其他相關文章!