帝国cms 给数据库瘦身之删除文章简介字段完整版

时间:2024年01月27日

/

来源:网络

/

编辑:佚名

删除smalltext这个简介字段,然后每次查询文章内容,并截取80个文字来作为文章简介,使用于一些对简介无需自定义的网站。
支持指定数据表查询。
函数:
function user_smalltext($id,$stb,$fontNume = 80,$tabe='news'){
    global $empire,$dbtbpre;
    $fr=$empire->fetch1("select newstext from {$dbtbpre}ecms_{$tabe}_data_{$stb} where id='{$id}'");
    //自定义处理
    if($tabe!='news'){
        
    }
    return mb_substr( strip_tags($fr['newstext']), 0, $fontNume, 'UTF-8');
}
列表页调用:
$smalltext =  user_smalltext($r[id],$r[stb],80);
$listtemp='<div class="col-sm-6 list-item-img-col">
      <div class="list-item-img-more">
        <p>'.$smalltext.'...</p>
        <em>点击查看详细信息</em>
      </div>
    </div>';
猜你需要

豫ICP备2021026617号-1  豫公网安备:41172602000185   Copyright © 2021-2028 www.78moban.com/ All Rights Reserved

本站作品均来自互联网,转载目的在于传递更多信息,并不代表本站赞同其观点和对其真实性负责。如有侵犯您的版权,请联系 1565229909#qq.com(把#改成@),我们将立即处理。