您好!欢迎来到e资源!本站资源24小时自动发货,海量精品课程资源免费下载!

file_get_contents 输出乱码问题

我的页面是utf-8,file_get_contents的页面是gb2312,输出时中文乱码。解决方法如下:...
我的页面是utf-8,file_get_contents的页面是gb2312,输出时中文乱码。

解决方法如下:

<?php 
header("Content-Type:text/html;charset=utf-8"); 
$keyworld="跟班网"; 
$keyworld=iconv("utf-8","gb2312",$keyworld); 
$url = "http://www.baidu.com/s?f=8&wd=$keyworld"; 
$html = file_get_contents($url); 
$html = iconv("gb2312", "utf-8//IGNORE",$html); 
echo $html;
?> 
开通vip
首页 导航 会员 客服 微信
QQ 微信 邮箱 TOP