删除解析文本中的 html 实体 - Php

发布于 2024-11-25 07:42:01 字数 60 浏览 0 评论 0原文

如何从解析的 HTML 文本中删除/转换类似“-”的字符?

有没有什么功能可以去掉这个??

How to remove/convert characters like this "’" from parsed HTML Text?

Whether there is any function to remove this??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月静好 2024-12-02 07:42:01

如果您使用 html_entity_decode 或类似的 PHP 函数,请检查是否有参数来定义所使用的字符集。

html_entity_decode ( string $string [, int $quote_style = ENT_COMPAT [, string $charset = 'UTF-8' ]] )

http://www.php.net/manual/en/function .html-entity-decode.php

假设源不奇怪,UTF-8 可能会正确显示字符。

If you're using html_entity_decode or a similar PHP function check if there's a parameter to define the character set used for example.

html_entity_decode ( string $string [, int $quote_style = ENT_COMPAT [, string $charset = 'UTF-8' ]] )

http://www.php.net/manual/en/function.html-entity-decode.php

UTF-8 will PROBABLY display characters correctly assuming the source isn't weird.

靖瑶 2024-12-02 07:42:01

这些字符通常用于浏览器解释页面的编码。
您可以尝试使用 中的元标记更改编码,例如:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

Those characters are normally do to the encoding your browser is interpreting the page with.
You could try changing the encoding with a meta tag in the <head> like:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文