smarty中的truncate

转载地址:http://www.kuitao8.com/20140505/2375.shtml

smarty中也有类似于PHP的strstr函数截取字符串。

smarty中截取字符串的函数是truncate

用法如下:

truncate(a:b:c)

其中a,是截取的字符串长度,b是追加在截取字符串后面的文本字串.该追加字串被计算在截取长度中,,默认是“…”,c是是否要精确到字符,“false”截取到词的边界,“true”精确到字符,默认是false。

例如:index.php

:$smarty = new Smarty;

$smarty->assign(‘articleTitle’, ‘Two Sisters Reunite after Eighteen Years at Checkout Counter.’);$smarty->display(‘index.tpl’);

index.tpl:

{$articleTitle}

{$articleTitle|truncate}

{$articleTitle|truncate:30}

{$articleTitle|truncate:30:”"}        //因为第三个参数是false,后卖弄的单词超出,所以到after截止。

{$articleTitle|truncate:30:”—”}

{$articleTitle|truncate:30:”":true}     //完整的输出,到字符

{$articleTitle|truncate:30:”…”:true} //”…”占三个字符

输出结果:

Two Sisters Reunite after Eighteen Years at Checkout Counter.

Two Sisters Reunite after Eighteen Years at Checkout Counter.

Two Sisters Reunite after…

Two Sisters Reunite after

Two Sisters Reunite after—

Two Sisters Reunite after Eigh

Two Sisters Reunite after E…


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值