php html encode
时间: 2023-07-05 21:07:19 浏览: 140
html代码
在 PHP 中,可以使用 htmlspecialchars 函数对字符串进行 HTML 编码。该函数将字符串中的特殊字符(例如 <、>、& 和 ")转换为它们的 HTML 实体,从而可以安全地在 HTML 页面上显示这些字符。
下面是一个例子:
```php
$str = "This is a <b>bold</b> statement.";
echo htmlspecialchars($str);
```
输出结果为:
```
This is a <b>bold</b> statement.
```
在 HTML 页面上,这个字符串会显示为:
This is a <b>bold</b> statement.
请注意,htmlspecialchars 函数的第二个参数指定了字符集编码,默认为 ISO-8859-1。如果在页面中使用的字符集编码不同,应该相应地修改该参数。
阅读全文