当我通过 PHP 获取 Wikipedia API 时,为什么会得到奇怪的结果?
我正在使用 PHP 访问维基百科 API。这是我得到的网址:
http://en.wikipedia.org/w/api.php?action=query&prop=revisions|links&titles=google&rvprop=ids|timestamp|user| comment|content&rvlimit=1&format=xml
结果很奇怪:
我添加了 < code>header('Content-type:text/html; charset=utf-8'); 在页面顶部,但这似乎没有帮助。这是字符编码问题吗?
I'm using PHP to access the Wikipedia API. This is the URL I'm getting:
http://en.wikipedia.org/w/api.php?action=query&prop=revisions|links&titles=google&rvprop=ids|timestamp|user|comment|content&rvlimit=1&format=xml
The results are very strange:
I added header('Content-type:text/html; charset=utf-8');
at the top of the page, but that didn't seem to help. Is this a character encoding issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的编码(出于某种原因称为“unicode”)没有任何问题,因为我可以看到一些非拉丁语言显示得很好。您只是缺少列出的四种语言的字体。
There's nothing wrong with your encoding (what you call the "unicode" for some reason) as I can see a few non-latin languages being displayed quite fine. You're just missing the fonts for the four languages you listed.
某些旧版本的 php 无法正确支持 UTF-8 或 unicode,也许请确保您使用的是最新版本。
Some older versions of php dont support UTF-8 or unicode properly, perhaps ensure you are using an up to date version.