运行 ❯
获取您的
自有 PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php $str = "This is some <b>bold</b> text."; echo htmlspecialchars($str); ?> <p>Converting < and > into entities are often used to prevent browsers from using it as an HTML element. This can be especially useful to prevent code from running when users have access to display input on your homepage.</p> </body> </html>
这是一些 <b>粗体</b> 文本。
将 < 和 > 转换为实体通常用于防止浏览器将其用作 HTML 元素。这在防止用户访问您的主页时显示输入而运行代码时尤其有用。