php怎么将字符串转为html

php将字符串转为html的方法:可以利用htmlentities()函数来实现。该函数可以把字符转换为HTML实体,函数语法:【htmlentities(string,quotestyle,character-set)】。

htmlentities() 函数把字符转换为 HTML 实体。

(推荐教程:php图文教程)

语法:

htmlentities(string,quotestyle,character-set)

实现代码:

<html>
<body>
<?php
$str = "John & 'Adams'";
echo htmlentities($str, ENT_COMPAT);
echo "<br />";
echo htmlentities($str, ENT_QUOTES);
echo "<br />";
echo htmlentities($str, ENT_NOQUOTES);
?>
</body>
</html>

(视频教程推荐:php视频教程)

输出:

John & 'Adams'
John & 'Adams'
John & 'Adams'

如果在浏览器中查看源代码,会看到这些 HTML:

<html>
<body>
John &amp; 'Adams'<br />
John &amp; 'Adams'<br />
John &amp; 'Adams'
</body>
</html>

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » php怎么将字符串转为html