How to convert HTML entities like amp;#8211; to their character equivalents?(如何转换 HTML 实体,如 amp;#8211;到他们的性格等价物?)
问题描述
我正在创建一个文件,该文件将保存在本地用户的计算机上(不在网络浏览器中呈现).
I am creating a file that is to be saved on a local user's computer (not rendered in a web browser).
我目前正在使用 html_entity_decode
,但这并没有转换像 –
(即 n-dash)这样的字符,并且想知道还有什么其他功能我应该在用.
I am currently using html_entity_decode
, but this isn't converting characters like –
(which is the n-dash) and was wondering what other function I should be using.
例如,当文件被导入软件时,它会显示为 –
,而不是 ndash 或只是一个 -.我知道我可以使用 str_replace
,但是如果它发生在这个字符上,它可能会发生在许多其他字符上,因为数据是动态的.
For example, when the file is imported into the software, instead of the ndash or just a - it shows up as –
. I know I could use str_replace
, but if it's happening with this character, it could happen with many others since the data is dynamic.
推荐答案
您需要定义目标字符集.–
不是默认 ISO-8859-1 字符集中的有效字符,因此不会被解码.将 UTF-8 定义为输出字符集,它将解码:
You need to define the target character set. –
is not a valid character in the default ISO-8859-1 character set, so it's not decoded. Define UTF-8 as the output charset and it will decode:
echo html_entity_decode('–', ENT_NOQUOTES, 'UTF-8');
如果可能,您应该避免使用 HTML 实体.我不知道编码数据来自哪里,但是如果您像这样将其存储在数据库或其他地方,那么您就做错了.始终存储 UTF-8 编码的数据,并且仅在必要时转换为 HTML 实体或以其他方式转义输出.
If at all possible, you should avoid HTML entities to begin with. I don't know where that encoded data comes from, but if you're storing it like this in the database or elsewhere, you're doing it wrong. Always store data UTF-8 encoded and only convert to HTML entities or otherwise escape for output when necessary.
这篇关于如何转换 HTML 实体,如 –到他们的性格等价物?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何转换 HTML 实体,如 –到他们的性格等价物?
基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01