在PHP中,可以使用htmlentities()函數來轉義html,能把字元轉換成HTML實體,語法「htmlentities(string,flags,character-set,double_encode)」。 PHP中也可以使用html_entity_decode()函數來反轉義html,把HTML實體轉換成字元。
本教學操作環境:windows7系統、PHP8版,DELL G3電腦
php中轉義html標籤
1、htmlentities()函數轉義html
#htmlentities() 函數把字元轉換為HTML 實體。
提示:要把 HTML 實體轉換回字符,請使用 html_entity_decode() 函數。
提示:請使用 get_html_translation_table() 函數來傳回 htmlentities() 使用的翻譯表。
語法
htmlentities(string,flags,character-set,double_encode)
#2、html_entity_decode()函數反轉義html
#html_entity_decode() 函數把HTML 實體轉換成字元。
html_entity_decode() 函數是 htmlentities() 函數的反函數。
語法
html_entity_decode(string,flags,character-set)
#【推薦學習:《PHP影片教學》】
以上是php中怎麼轉義html標籤的詳細內容。更多資訊請關注PHP中文網其他相關文章!