php實現html標籤的跳脫

2020-07-16 10:06:17

在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標籤的跳脫的詳細內容,更多請關注TW511.COM其它相關文章!