phpcms를 수집할 수 없으면 어떻게 해야 하나요?
https 웹사이트 콘텐츠를 수집할 수 없는 주된 이유는 https가 콘텐츠 획득을 위한 file_get_contents를 지원하지 않기 때문입니다. 따라서 콘텐츠 획득을 위해 컬을 사용하는 것을 고려해 볼 수 있습니다. (pathinfo에서 볼 수 있는 컬을 활성화해야 합니다.)
(1) phpcmsmodulescollectionclassescollection.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) 함수 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; } }
to
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; } }
그런 다음 저장하여 테스트 결과를 받으세요
다른 버그가 있는지는 모르겠지만 피드백 메시지를 남겨주세요!
PHP 중국어 웹사이트, 수많은 무료 PHPCMS 튜토리얼, 온라인 학습을 환영합니다!
위 내용은 phpcms를 수집할 수 없으면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!