花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

織夢采集時自動生成摘要和關(guān)鍵字

時間: 2019-04-24 11:57 閱讀: 作者:素材無憂網(wǎng)

1、織夢修改 include/dedecollection.class.php

//自動分析關(guān)鍵字和摘要

preg_match("/<meta[\s]+name=['\"]keywords['\"] content=['\"](.*)['\"]/isU",$this->tmpHtml,$inarr);

preg_match("/<meta[\s]+content=['\"](.*)['\"] name=['\"]keywords['\"]/isU",$this->tmpHtml,$inarr2);

if(!isset($inarr[1]) && isset($inarr2[1]))

{

$inarr[1] = $inarr2[1];

}


用下面一段代碼替換上面的

//自動分析關(guān)鍵字和摘要

preg_match("/<meta[\s]+name=['\"]keywords['\"] content=['\"](.*)['\"]/isU",$this->tmpHtml,$inarr);

preg_match("/<meta[\s]+content=['\"](.*)['\"] name=['\"]keywords['\"]/isU",$this->tmpHtml,$inarr2);

preg_match("/<meta[\s]+name=keywords content=['\"](.*)['\"]/isU",$this->tmpHtml,$inarr3);

if(!isset($inarr[1]) && isset($inarr2[1]))

{

$inarr[1] = $inarr2[1];

}

if(!isset($inarr[1]) && isset($inarr3[1]))

{

$inarr[1] = $inarr3[1];

}