Using PHP file_get_contents function garbled how to break

Source: Internet
Author: User
$url = "http://i.ifeng.com/";$str = file_get_contents($url);var_dump($str);

The result is garbled, how to break? I am very grateful for the help of God!

Online, etc.

Reply content:

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

The result is garbled, how to break? I am very grateful for the help of God!

Online, etc.

Garbled reason is mainly two, one is the problem of gzip compression, one is the problem of coding. For PHP, using file_get_contents to fetch a Web page is not very appropriate, I recommend using curl. Its stability is unparalleled, both HTTP and HTTPS can be resolved.

Just set the code. You try.

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

We found a way.

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

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.