插件窝 干货文章 PHP htmlspecialchars() 函数

PHP htmlspecialchars() 函数

php htmlspecialchars htmlspecialchars() 725    来源:插件窝    2020-03-29

把预定义的字符 "<" (小于)和 ">" (大于)转换为 HTML 实体:


<?php
$str = "This is some <b>bold</b> text.";
echo htmlspecialchars($str);
?>

以上代码的 HTML 输出如下(查看源代码):


<!DOCTYPE html>
<html>
<body>
This is some <b>bold</b> text.
</body>
</html>

以上代码的浏览器输出:


This is some <b>bold</b> text.