htmlspecialchars()
定义和用法
htmlspecialchars() 函数把一些预定义的字符转换为 HTML 实体。
预定义的字符是:
1 |
|
实例
把预定义的字符 “<” (小于)和 “>” (大于)转换为 HTML 实体:
1 |
|
上面代码的 HTML 输出如下(查看源代码):This is some <b>bold</b> text.
上面代码的浏览器输出如下:This is some <b>bold</b> text.
htmlspecialchars_decode()
定义和用法
htmlspecialchars_decode() 函数把一些预定义的 HTML 实体转换为字符。
实例
把预定义的 HTML 实体 “<”(小于)和 “>”(大于)转换为字符:
1 |
|
上面代码的 HTML 输出如下(查看源代码):This is some <b>bold</b> text.
上面代码的浏览器输出如下:
This is some bold text.