How to solve PHP using File_get_contents method Crawl Web page data garbled

Source: Internet
Author: User
We are often encountered in the crawl data encountered garbled phenomenon, let people crash. Today mainly and we discuss how to solve PHP with File_get_contents method Crawl Web page data garbled problem, need friends can refer to, hope to help everyone. Let's take a look at the small series below.

Method One:

Will be $data=file_get_contents ($url); Change to $data=file_get_contents ("compress.zlib://". $url);

The reason is that the web The content is gzip compressed.

Method Two:

using the Curl method to crawl,

Define a function

function Curl_get ($url, $gzip =false) {     $curl = Curl_init ($url); curl_setopt ($curl, Curlopt_returntransfer, 1);     curl_setopt ($curl, Curlopt_connecttimeout, ten);      if ($gzip) curl_setopt ($curl, curlopt_encoding, "gzip");  The key here $content = Curl_exec ($curl); Curl_close ($curl); return $content;   }

Then call, $data = Curl_get ($url, false);

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.