CURL中文乱码

$ch= curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
curl_exec($ch);
curl_close($ch);
?>
登录后复制


$url的时间请调整为当天或者明天~ 为什么会是乱码?
curl url php


------解决方案--------------------
header("content-type:text/html;charset=utf-8"); //指定下字符集
------解决方案--------------------
你写反了!

$contents = mb_convert_encoding($contents, "gb2312", "UTF-8");
不是
$contents = mb_convert_encoding($contents, "UTF-8", "gb2312");

09-01 00:08