鍍金池/ 問答/PHP  網(wǎng)絡(luò)安全/ PHP使用QueryList爬取https頁面報錯,請問如何解決?

PHP使用QueryList爬取https頁面報錯,請問如何解決?

1、問題描述:
使用QueryList爬取https頁面報錯;

cURL error 60: SSL certificate problem: unable to get local issuer certificate (see http://curl.haxx.se/libcurl/c/libcurl-errors.html) in E:\wamp\www\QuerryList\vendor\guzzlehttp\guzzle\src\Handler\CurlFactory.php on line 187

2、代碼

$ql = QueryList::get('https://tieba.baidu.com/p/5433606717?pid=115269524228&cid=0#115269524228');
$rules2 = array(
    'content' => array('#post_content_115269524228','html')
);
$content = $ql->encoding('UTF-8')->rules($rules2)->query()->getData();
print_r ($content->all());
回答
編輯回答
她愚我

需要設(shè)置ssl證書,或者不驗證證書,例:

$ql = QueryList::get('https://...',[],['verify' => false]);

詳情可以查看GuzzleHttp文檔:http://guzzle-cn.readthedocs....

2017年3月21日 11:27