#phpcms が収集できない場合はどうすればよいですか?
https Web サイトのコンテンツを収集できない主な理由は、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; }
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; } }
を取得します。
他にバグがあるかどうかはわかりません。フィードバックが必要な場合はメッセージを残してください。 PHP 中国語 Web サイト、多数の無料PHPCMS チュートリアル、オンライン学習へようこそ!
以上がphpcmsが収集できない場合の対処方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。