phpQuery 制作 Â的和其他人
当我通过 phpQuery 运行一个文件,其中包含
或 ©
之类的内容时,会以某种方式添加一个 。
所以当我有这个文件(hello.html):
hello, this is a test ©
并且我运行这个代码:
$f = phpQuery::newDocumentFile( 'hello.html' );
echo $f->html();
我得到以下输出:
hello, this is a test ©
我可以做些什么来实现这个吗?
When I have a file that I run through phpQuery that has stuff like
or ©
in it somehow a  is added.
so when I have this file (hello.html):
hello, this is a test ©
and I run this code:
$f = phpQuery::newDocumentFile( 'hello.html' );
echo $f->html();
I get the following output:
hello, this is a test ©
Is there something I can do to fic this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于编码问题, Â 显示,我会尝试使用
utf8_encode
将其从 ISO-8859-1 转换为 UTF-8这是相关帖子 HTML 编码问题 - 显示“”字符而不是“ ”
 shows up because of encoding issues, I would try converting it from ISO-8859-1 to UTF-8 using
utf8_encode
This is a related post HTML encoding issues - “” character showing up instead of “ ”