将一些字符转换为 HTML 实体:
<?php
$str = '<a href="https://www.91xjr.com">Go to 91xjr.com</a>';
echo htmlentities($str);
?>
上述代码的 HTML 输出将是(查看源代码):
<a href="https://www.91xjr.com">Go to 91xjr.com</a>
上述代码的浏览器输出将是:
<a href="https://www.91xjr.com">Go to 91xjr.com</a>
亲自试一试 »
htmlentities() 函数将字符转换为 HTML 实体。
提示:要将 HTML 实体转换回字符,请使用html_entity_decode()功能。
提示:使用get_html_translation_table()函数返回 htmlentities() 使用的转换表。
htmlentities(
string,flags,character-set,double_encode)
Parameter | Description |
---|---|
string | Required. Specifies the string to convert |
flags | Optional. Specifies how to handle quotes, invalid encoding and the used document type. The available quote styles are:
Invalid encoding:
Additional flags for specifying the used doctype:
|
character-set | Optional. A string that specifies which character-set to use. Allowed values are:
Note: Unrecognized character-sets will be ignored and replaced by ISO-8859-1 in versions prior to PHP 5.4. As of PHP 5.4, it will be ignored an replaced by UTF-8. |
double_encode | Optional. A boolean value that specifies whether to encode existing html entities or not.
|
返回值: | 返回转换后的字符串。然而,如果字符串参数包含无效编码,它将返回一个空字符串,除非设置了 ENT_IGNORE 或 ENT_SUBSTITUTE 标志 |
---|---|
PHP 版本: | 4+ |
变更日志: | PHP 5.6 - 更改了默认值字符集参数为默认字符集的值(在配置中)。 PHP 5.4 - 更改了默认值字符集参数为 UTF-8。 PHP 5.4 - 添加了 ENT_SUBSTITUTE、ENT_DISALLOWED、ENT_HTML401、ENT_HTML5、ENT_XML1 和 ENT_XHTML PHP 5.3 - 添加了 ENT_IGNORE 常量。 PHP 5.2.3 - 添加了双编码范围。 PHP 4.1 - 添加了字符集范围。 |
将一些字符转换为 HTML 实体:
<?php
$str = "Albert Einstein said: 'E=MC²'";
echo htmlentities($str, ENT_COMPAT); // Will only convert double quotes
echo "<br>";
echo htmlentities($str, ENT_QUOTES); // Converts double and single quotes
echo "<br>";
echo htmlentities($str, ENT_NOQUOTES); // Does not convert any quotes
?>
上述代码的 HTML 输出将是(查看源代码):
Albert Einstein said: 'E=MC²'<br>
Albert Einstein said: 'E=MC²'<br>
Albert Einstein said: 'E=MC²'
上述代码的浏览器输出将是:
Albert Einstein said: 'E=MC²'
Albert Einstein said: 'E=MC²'
Albert Einstein said: 'E=MC²'
亲自试一试 »
使用西欧字符集将一些字符转换为 HTML 实体:
<?php
$str = "My name is Øyvind Åsane. I'm Norwegian.";
echo htmlentities($str, ENT_QUOTES, "UTF-8"); // Will only convert double quotes (not single quotes), and uses the character-set Western European
?>
上述代码的 HTML 输出将是(查看源代码):
<!DOCTYPE html>
<html>
<body>
My name is Øyvind Åsane. I'm Norwegian.
</body>
</html>
上述代码的浏览器输出将是:
My name is Øyvind Åsane. I'm Norwegian.
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!