file_get_contents 输出乱码问题

时间:2016-09-08
我的页面是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;
?> 
上一条:PHP创建,读取和销毁Cookie数组的方法 下一条:PHP判断url链接是否被百度收录

相关文章

最新文章