帝国cms的头条文字生成图片

来自:互联网
时间:2019-04-22
阅读:
//帝国cms首页模板中的代码
[e:loop={'select * from [!db.pre!]ecms_news where firsttitle>0 and checked = 1 order by id DESC limit 0,1',9,24,0}]
<?
if ( strlen($bqr[title]) > 40 ){
$word=esub($bqr[title],40)."...";
}else{
$word=$bqr[title];
}
?>
<a href="<?=$bqsr[titleurl]?>" class="index_header" title="<?=$bqr[title];?>" target="_blank" style="line-height: 30px;height:30px;letter-spacing: 1px;font-size: 24px; color: #000000; font-family: '黑体';">
<img src="/e/extend/wordtopic/index.php?word=<?=$word;?>" alert="<?=$bqr[title];?>" title="<?=$bqr[title];?>" width="710" height="50" /></a>
[/e:loop]

更精确的应该是判断字数,然后更智能的显示。这只是在模板中截取固定字数,应该是最简单的办法了。

返回顶部
顶部