smarty 列表插件显示标题长度和连接解决思路

WBOY
Libérer: 2016-06-13 10:05:02
original
898 Les gens l'ont consulté

smarty 列表插件显示标题长度和连接
现在在写一个站, 要在smarty 插件那里写一个列表插件,要截取标题长度。

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?php function smarty_function_list($params, &$smarty)    {        extract($params);        $cate = !empty($cate) ? trim($cate) : '';//表名        $items = !empty($items) ? trim($items) : '*';//字段        $length=!empty($length) ? trim ($length) :'10';//长度        $where = !empty($where) ? trim($where) : '';//条件        $order = !empty($order) ? trim($order) : '';//排序        $page = !empty($page) ? intval($page) : 0;//分页        $pagesize = !empty($pagesize) ? intval($pagesize) : 20;        $varname = !empty($varname) ? trim($varname) : '';        global $db;        global $table;        $sql="select $items from ".$table[$cate];        if(!empty($where))        {            $sql.=" where $where ";        }        if(!empty($order))        {          $sql.=" order by $order";        }        $page=max($page,1);        if($pagesize<1)        {            $pagesize=10;        }        $rs=$db->PageExecute($sql,$pagesize,$page);        $rs=$rs->getRows();        $smarty->assign($length,$length);        $smarty->assign($varname, $rs);        unset($rs);    }?>
Copier après la connexion

上面是插件代码;
HTML code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->{--list cate="articles" items="Title" length=4 varname="rs"--}{--foreach from=$rs item=r--}{--$r.Title--}<br>{--/foreach--}
Copier après la connexion

上面是模板代码。
现在就是要截取标题长度,和标题连接
$r.Titletruncatecn:$length:"...":true
这种的是不行的!各位师兄,师姐谢谢了!

------解决方案--------------------
探讨

$length是哪里来的?

如果是变了的话,试下这个呢
$r.Title|truncate:`$length`:"...":true
要不就指定一个具体数字
$r.Title|truncate:30:"...":true
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!