suchen

Heim  >  Fragen und Antworten  >  Hauptteil

用 PHP 的 file_get_contents 函数出现乱码怎么破

$url = "http://i.ifeng.com/";
$str = file_get_contents($url);

var_dump($str);

结果乱码了,怎么破?求大神帮助,万分感激!

在线等

大家讲道理大家讲道理2776 Tage vor336

Antworte allen(3)Ich werde antworten

  • 巴扎黑

    巴扎黑2017-04-10 18:02:17

    乱码的原因主要就是两个,一个是GZIP压缩的问题,一个是编码的问题。对PHP来说,使用file_get_contents来取一个网页内容并不是非常合适,我推荐使用curl来做。它的稳定性是无与伦比的,不管是http还是https都可以解决。

    Antwort
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-10 18:02:17

    设置一下编码就行了。你试试看

    header("Content-Type:text/html;charset=utf-8");
    
    $url = "http://i.ifeng.com/";
    $str = file_get_contents($url);
    
    var_dump($str);

    Antwort
    0
  • 巴扎黑

    巴扎黑2017-04-10 18:02:17

    找到方法了

    file_get_contents("compress.zlib://".$url);

    Antwort
    0
  • StornierenAntwort