删除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>';
TAGS :