帝国CMS后台采集不支持HTTPS怎么办?(帝国CMS后台采集支持https开头的协议的方法)
相信使用过帝国CMS后台采集的朋友们都知道,帝国CMS后台采集是不支持HTTPS的,那么我们需要进行内容采集的时候,而对方网站正好是HTTPS网站,这个时候怎么办呢?下面帝国CMS模板网就来告诉大家帝国CMS后台采集支持https开头的协议的方法:
修改:/e/class/connect.php文件
在该文件最上面加上以下函数
//获取https链接内容
function getHTTPS($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_REFERER, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); $result = curl_exec($ch); curl_close($ch); return $result;}
找到ReadFiletext函数如下代码:
function ReadFiletext($filepath){ $filepath=trim($filepath); $htmlfp=@fopen($filepath,"r"); //远程 if(strstr($filepath,"://")) { while($data=@fread($htmlfp,500000)) { $string.=$data; } } //本地 else { $string=@fread($htmlfp,@filesize($filepath)); } @fclose($htmlfp); return $string;}
改成:
function ReadFiletext($filepath){ $filepath=trim($filepath); $htmlfp=@fopen($filepath,"r"); //远程 if(strstr($filepath,"https://")){ return getHTTPS($filepath); } if(strstr($filepath,"://")) { while($data=@fread($htmlfp,500000)) { $string.=$data; } } //本地 else { $string=@fread($htmlfp,@filesize($filepath)); } @fclose($htmlfp); return $string;}
完成以上的修改流程步骤,自此可实现采集https开头的网页链接!
好来 !OK,搞定!大家可以自行测试看看!