事例:php
php代碼段:html
$smarty = new Smarty; $smarty->assign('string', 'Life honest valuable, love price is higher.'); $smarty->display('index.tpl');
index.tpl:lua
{$string} {$string|truncate} {$string|truncate:30} {$string|truncate:30:""} {$string|truncate:30:"---"} {$string|truncate:30:"":true} {$string|truncate:30:"...":true} {$string|truncate:30:"**********":false:true}
output:code
Life honest valuable, love price is higher.
Life honest valuable, love price is higher.
Life honest valuable, love...
Life honest valuable, love
Life honest valuable, love---
Life honest valuable, love pri
Life honest valuable, love ...
Life hones**********is higher. htm