>  기사  >  백엔드 개발  >  PHP에서 웹 콘텐츠를 크롤링하는 예에 대한 자세한 설명

PHP에서 웹 콘텐츠를 크롤링하는 예에 대한 자세한 설명

coldplay.xixi
coldplay.xixi앞으로
2020-08-06 16:33:534022검색

PHP에서 웹 콘텐츠를 크롤링하는 예에 대한 자세한 설명

PHP에서 웹 콘텐츠를 크롤링하는 예에 대한 자세한 설명방법 2:

curl을 사용하여

  $url = "http://news.sina.com.cn/c/nd/2016-10-23/doc-ifxwztru6951143.shtml";
    $html = file_get_contents($url);
    //如果出现中文乱码使用下面代码
    //$getcontent = iconv("gb2312", "utf-8",$html);
    echo "<textarea style=&#39;width:800px;height:600px;&#39;>".$html."</textarea>";
$url = "http://news.sina.com.cn/c/nd/2016-10-23/doc-ifxwztru6951143.shtml";
    
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
$html = curl_exec($ch);
curl_close($ch);

echo "<textarea style=&#39;width:800px;height:600px;&#39;>".$html."</textarea>";
구현 학습 추천:

php 프로그래밍

(동영상)

위 내용은 PHP에서 웹 콘텐츠를 크롤링하는 예에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 jb51.net에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제