QueryList는 수집을 위해 jQuery를 사용하며 풍부한 플러그인을 가지고 있습니다.
다음은 QueryList가 PhantomJS 플러그인을 사용하여 JS에서 동적으로 생성된 페이지 콘텐츠를 캡처하는 방법을 보여줍니다.
권장: "PHP 튜토리얼"
설치
Composer를 사용하여 설치:
QueryList 설치
composer require jaeger/querylist GitHub: https://github.com/jae-jae/QueryList
PhantomJS 플러그인 설치
composer require jaeger/querylist-phantomjs GitHub: https://github.com/jae-jae/QueryList-PhantomJS
D PhantomJS 바이너리 파일 다운로드
PhantomJS 공식 홈페이지: http://phantomjs.org, 해당 플랫폼에 맞는 PhantomJS 바이너리 파일을 다운로드하세요.
플러그인 API
QueryList 브라우저($url,$debug = false,$commandOpt = []): 브라우저를 사용하여 연결을 엽니다.
사용
"오늘의 투티아오" 모바일 버전을 받아보세요 " 예를 들어, " "오늘의 Toutiao" 모바일 버전은 React 프레임워크를 기반으로 하며 콘텐츠는 순수하게 동적으로 렌더링됩니다.
다음은 QueryList의 PhantomJs 플러그인 사용법을 보여줍니다.
플러그인 설치
use QL\QueryList; use QL\Ext\PhantomJs; $ql = QueryList::getInstance(); // 安装时需要设置PhantomJS二进制文件路径 $ql->use(PhantomJs::class,'/usr/local/bin/phantomjs'); //or Custom function name $ql->use(PhantomJs::class,'/usr/local/bin/phantomjs','browser');
Example-1
동적으로 렌더링된 HTML 가져오기:
$html = $ql->browser('https://m.toutiao.com')->getHtml(); print_r($html);
모든 p 태그 텍스트 콘텐츠 가져오기:
$data = $ql->browser('https://m.toutiao.com')->find('p')->texts(); print_r($data->all());
출력 :
Array ( [0] => 自拍模式开启!国庆假期我和国旗合个影 [1] => 你旅途已开始 他们仍在自己的岗位上为你的假期保驾护航 [2] => 喜极而泣,都教授终于回到地球了! //.... )
http 프록시 사용:
// 更多选项可以查看文档: http://phantomjs.org/api/command-line.html $ql->browser('https://m.toutiao.com',true,[ // 使用http代理 '--proxy' => '192.168.1.42:8080', '--proxy-type' => 'http' ])
예-2
복잡한 요청 사용자 정의:
$data = $ql->browser(function (\JonnyW\PhantomJs\Http\RequestInterface $r){ $r->setMethod('GET'); $r->setUrl('https://m.toutiao.com'); $r->setTimeout(10000); // 10 seconds $r->setDelay(3); // 3 seconds return $r; })->find('p')->texts(); print_r($data->all());
디버그 모드를 활성화하고 쿠키 파일을 로컬로 로드:
$data = $ql->browser(function (\JonnyW\PhantomJs\Http\RequestInterface $r){ $r->setMethod('GET'); $r->setUrl('https://m.toutiao.com'); $r->setTimeout(10000); // 10 seconds $r->setDelay(3); // 3 seconds return $r; },true,[ '--cookies-file' => '/path/to/cookies.txt' ])->rules([ 'title' => ['p','text'], 'link' => ['a','href'] ])->query()->getData(); print_r($data->all());
위 내용은 PHP는 QueryList를 사용하여 JavaScript 동적 렌더링 페이지를 쉽게 수집합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!