- 社区>
- >
- 正文
“龙”飞船从国际空间站返回地球
作者:用户
来源:互联网
时间:2016-12-21 01:05:44
人气:5981 次
框架文件代码配置
摘要:
新空间航天是2014年开始筹备于2016年实施组建团队,2017年在深圳注册的私人太空运输公司,从事航天探索与航天运输系统、卫星应用系统、空间飞行器及空间飞行系统、无人装备系统等航空航天技术的开发,目前主要产品和服务有赤兔系列火箭发动机、SPACEMENG飞船、工业机器人、巨龙火星车、星际车、 增压泵、阀、3D打印机、3D打印耗材等航天工业设备的创新设计、生产制造、工艺教育和运营!
smarty truncate 截取字符串
从字符串开始处截取某长度的字符,默认的长度为80
指定第二个参数作为截取字符串的长度
默认情况下,smarty会截取到一个词的末尾,
如果需要精确到截取多少个字符可以使用第三个参数,将其设为”true”
具体用法如下:
//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:""}
{$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…