免费一级码无码婬片AA,多姿,国产成人精品日本亚洲18图 ,亚洲欧美视频一区,久久久久国产精品一区

做網(wǎng)站找實(shí)速,專業(yè)網(wǎng)站制作設(shè)計(jì)平臺(tái)
首頁(yè) > 課堂 > 網(wǎng)站技術(shù) > 詳情
網(wǎng)站標(biāo)簽 / Tags

帝國(guó)cms后臺(tái)采集支持https開頭的協(xié)議地址修改方法

2020-02-16 15:24:31   來源:實(shí)速網(wǎng)絡(luò)|網(wǎng)站建設(shè)|網(wǎng)站設(shè)計(jì)|網(wǎng)站優(yōu)化|網(wǎng)站仿制|網(wǎng)站SEO|網(wǎng)站推廣|空間域名|主機(jī)VPS|服務(wù)器|網(wǎng)站源碼|網(wǎng)站模版   瀏覽: 次
帝國(guó)cms后臺(tái)采集支持https開頭的協(xié)議地址修改方法 發(fā)布時(shí)間:2019-12-26 來源:未知 瀏覽: 關(guān)鍵詞:帝國(guó)CMS 后臺(tái) https 采集

帝國(guó)cms后臺(tái)采集支持https開頭的協(xié)議地址修改方法

發(fā)布時(shí)間:2019-12-26 來源:未知 瀏覽: 關(guān)鍵詞:帝國(guó)CMS 后臺(tái) https 采集 

修改:/e/class/connect.php文件

在該文件最上面加上以下函數(shù)

//獲取https鏈接內(nèi)容

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函數(shù)如下代碼

function ReadFiletext($filepath){	$filepath=trim($filepath);	$htmlfp=@fopen($filepath,"r");	//遠(yuǎn)程	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");	//遠(yuǎn)程		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;}

自此可實(shí)現(xiàn)采集https開頭的網(wǎng)頁(yè)鏈接

責(zé)任編輯:實(shí)速科技