PHP 的 file_get_contents()
为什么我在 echo 上遇到字符集问题?
$url = "http://ru.wikipedia.org";
$site=file_get_contents($url);
echo $site;
Why have I got trouble with charset on echo?
$url = "http://ru.wikipedia.org";
$site=file_get_contents($url);
echo $site;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将
header('Content-Type: text/html;charset=utf-8');
放在文件的开头Try putting
header('Content-Type: text/html;charset=utf-8');
at the start of your file