欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php html_entity_decode函数怎么用

程序员文章站 2022-03-17 10:50:50
...
html_entity_decode()函数用于把 HTML 实体转换为字符,语法为html_entity_decode(string,flags,character-set)。

php html_entity_decode函数怎么用

php html_entity_decode()函数怎么用?

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

语法

html_entity_decode(string,flags,character-set)

参数:

1、string:必需。规定要解码的字符串。

2、flags:可选。规定如何处理引号以及使用哪种文档类型。

可用的引号类型:

 ● ENT_COMPAT - 默认。仅解码双引号。

 ● ENT_QUOTES - 解码双引号和单引号。

 ● ENT_NOQUOTES - 不解码任何引号。

规定所使用文档类型的附加 flags:

 ● ENT_HTML401 - 默认。作为 HTML 4.01 处理代码。

 ● ENT_HTML5 - 作为 HTML 5 处理代码。

 ● ENT_XML1 - 作为 XML 1 处理代码。

 ● ENT_XHTML - 作为 XHTML 处理代码。

3、character-set:可选。字符串值,规定要使用的字符集。允许的值:

● UTF-8 - 默认。ASCII 兼容多字节的 8 位 Unicode

● ISO-8859-1 - 西欧

● ISO-8859-15 - 西欧(加入欧元符号 + ISO-8859-1 中丢失的法语和芬兰语字母)

● cp866 - DOS 专用 Cyrillic 字符集

● cp1251 - Windows 专用 Cyrillic 字符集

● cp1252 - Windows 专用西欧字符集

● KOI8-R - 俄语

● BIG5 - 繁体中文,主要在*使用

● GB2312 - 简体中文,国家标准字符集

● BIG5-HKSCS - 带香港扩展的 Big5

● Shift_JIS - 日语

● EUC-JP - 日语

● MacRoman - Mac 操作系统使用的字符集

注释:在 PHP 5.4 之前的版本,无法被识别的字符集将被忽略并由 ISO-8859-1 替代。自 PHP 5.4 起,无法被识别的字符集将被忽略并由 UTF-8 替代。

返回值:返回被转换的字符串

下面通过示例来看看php strstr()函数的使用方法。

示例1:把 HTML 实体转换为字符

<?php
$str = "Bill &amp; &#039;Steve&#039;";
echo html_entity_decode($str, ENT_COMPAT); // 只转换双引号
echo "<br>";
echo html_entity_decode($str, ENT_QUOTES); // 转换双引号和单引号
echo "<br>";
echo html_entity_decode($str, ENT_NOQUOTES); // 不转换任何引号
?>

输出:

php html_entity_decode函数怎么用

示例2:通过使用西欧字符集,把 HTML 实体转换为字符

<?php
$str = "My name is Øyvind Åsane. I'm Norwegian.";
echo html_entity_decode($str, ENT_QUOTES, "ISO-8859-1");
?>

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

<!DOCTYPE html>
<html>
<body>
My name is ?yvind ?sane. I'm Norwegian.
</body>
</html>

以上代码的浏览器输出:

My name is ?yvind ?sane. I'm Norwegian.

以上就是php html_entity_decode函数怎么用的详细内容,更多请关注其它相关文章!