删除解析文本中的 html 实体 - Php
如何从解析的 HTML 文本中删除/转换类似“-”的字符?
有没有什么功能可以去掉这个??
How to remove/convert characters like this "’" from parsed HTML Text?
Whether there is any function to remove this??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 html_entity_decode 或类似的 PHP 函数,请检查是否有参数来定义所使用的字符集。
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.
http://www.php.net/manual/en/function.html-entity-decode.php
UTF-8 will PROBABLY display characters correctly assuming the source isn't weird.
这些字符通常用于浏览器解释页面的编码。
您可以尝试使用
中的元标记更改编码,例如:
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: