>  기사  >  백엔드 개발  >  采集天气编码有关问题

采集天气编码有关问题

WBOY
WBOY원래의
2016-06-13 11:42:57772검색

采集天气编码问题

set_time_limit(0);
connect_sql();
$names = trim($_GET['names']);
$id = get_id($names);

if($id){
$url = 'http://m.weather.com.cn/data/'.$id.'.html';
$host = 'http://www.weather.com.cn/';
$files = @file_get_contents($url);
$data = json_decode($files);

$content_encoding = mb_detect_encoding($data, array('UTF-8', 'GBK'));
    $datas = iconv($content_encoding, 'UTF-8//IGNORE', $data);
var_dump($data);
}

function get_id($names){
$sql = "SELECT city_bh FROM city_id WHERE city_name = '{$names}'";
$rel = mysql_query($sql);
$row = mysql_fetch_array($rel);
$id = $row['city_bh'];
return $id;
}

function connect_sql(){
$con = mysql_connect('localhost','root','123456') or die('mysql error :'.mysql_error());
mysql_select_db('test');
mysql_query('set names utf8');
}
?>
页面已经转换成utf-8模式了,可是一直还是乱码

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:求课程다음 기사:下部这些代码能不能简写啊