htmlspecialchars()函数
2021-06-17 23:06
标签:运行 str echo font 实体 pre 浏览器 type color htmlspecialchars()函数,把 转换为实体,常用于防止浏览器将其用作 HTML 元素。 结果: htmlspecialchars()函数 标签:运行 str echo font 实体 pre 浏览器 type color 原文地址:http://www.cnblogs.com/wanlibingfeng/p/7263137.html 1 DOCTYPE html>
2 html>
3 body>
4
5 php
6 $str = "This is some bold text.";
7 echo htmlspecialchars($str);
8 ?>
9
10 p>把 和 > 转换为实体常用于防止浏览器将其用作 HTML 元素。当用户有权在您的页面上显示输入时,对于防止代码运行非常有用。p>
11
12 body>
13 html>
This is some b>boldb> text.
把 和 > 转换为实体常用于防止浏览器将其用作 HTML 元素。当用户有权在您的页面上显示输入时,对于防止代码运行非常有用。
上一篇:htm5新特性新增与弃用元素
下一篇:VM虚拟机-Windows
文章标题:htmlspecialchars()函数
文章链接:http://soscw.com/index.php/essay/95258.html