<?php
$url = "http://www.gewara.com/cinema/ajax/getCinemaPlayItem.xhtml?cid=64915153&mid=&fyrq=2013-01-24";
$ch= curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
curl_exec($ch);
curl_close($ch);
?>
$url的时间请调整为当天或者明天~ 为什么会是乱码?
curlurlphp

解决方案 »

  1.   

    对方是utf8的,你必须强制使用u8编码....
      

  2.   


    <?php
    $url = "http://www.gewara.com/cinema/ajax/getCinemaPlayItem.xhtml?cid=64915153&mid=&fyrq=2013-01-24";
    $useragent = "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.56 Safari/537.17";
    $ch= curl_init();
    curl_setopt($ch, CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
    curl_setopt($ch, CURLOPT_HEADER, 1);    
    $contents=curl_exec($ch);
    curl_close($ch);
    $contents = mb_convert_encoding($contents, "UTF-8", "gb2312");
    echo $contents;
    ?>试过了 还是不行啊  gb2312和gbk都试过了
      

  3.   

     header("content-type:text/html;charset=utf-8");  //指定下字符集
      

  4.   

    你写反了!

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