在e/class/function.php相应位置添加ClickPicNext函数//替换禁用字符
function ReplaceWord($newstext){
global $empire,$dbtbpre;
if(empty($newstext))
{return $newstext;}
$sql=$empire->query("select newword,oldword from {$dbtbpre}enewswords");
while($r=$empire->fetch($sql))
{
$newstext=str_replace($r[oldword],$r[newword],$newstext);
}
return $newstext;
}
后边添加
//把图片替换成链接
//----------------------------
function ClickPicNext($newstext){
// global $empire,$dbtbpre;
if(empty($newstext))
{return $newstext;}
$newstext=preg_replace('//i', "$0",$newstext);
return $newstext;
}
然后,在大约1962行,即在以下代码后:
if($public_r['opencopytext'])
{
$add[newstext]=AddNotCopyRndStr($add[newstext]);//随机复制字符
}
添加一行
$add[newstext]=ClickPicNext($add[newstext]);
这样,点击文章中的图片,就可以链接至下一页了。
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)