phpcms v9 擷取功能 不能用怎麼辦?
無法採集https的網站內容主要是https不支援file_get_contents取得內容,所以可以考慮採用curl的方式取得。 (需要開啟curl,可以在pathinfo裡邊查看)
(1)開啟phpcms\modules\collection\classes\collection.class.php
在類別裡邊新增函數:
protected static function curl_request($url){ if (!function_exists('curl_init')) { throw new Exception('server not install curl'); } $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_HEADER,0); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);//禁止调用时就输出获取到的数据 curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,false); $result = curl_exec($ch); curl_close($ch); return $result; }
(2)找到函數function get_htm把該函數
protected static function get_html($url, &$config) { if (!empty($url) && $html = @file_get_contents($url)) { if ($syscharset != $config['sourcecharset'] && $config['sourcetype'] != 4) { $html = iconv($config['sourcecharset'], CHARSET.'//TRANSLIT//IGNORE', $html); } return $html; } else { return false; } }
改成
protected static function get_html($url, &$config) { if(substr(trim($url),0, 5) == "https"){ $html = @self::curl_request($url); }else{ $html = @file_get_contents($url); } if (!empty($url) && $html) { if ($syscharset != $config['sourcecharset'] && $config['sourcetype'] != 4) { $html = iconv($config['sourcecharset'], CHARSET.'//TRANSLIT//IGNORE', $html); } return $html; } else { return false; } }
然後儲存即可獲取,測試結果
不知道是否還有其他bug,歡迎留言回饋!
PHP中文網,大量的免費PHPCMS教學,歡迎線上學習!
以上是phpcms v9 擷取功能 不能用怎麼辦?的詳細內容。更多資訊請關注PHP中文網其他相關文章!