echo $ this-> Html->标记('span',$ user ['User'] ['user_title'],array('class'=>“nameOfUser”);
### 在此标记中,我想将user_title截断为20个字符。 那我怎么能在HTML标签中使用截断?
答案 0 :(得分:0)
使用TextHelper; http://book.cakephp.org/2.0/en/core-libraries/helpers/text.html#texthelper
echo $this->Html->tag('span',
$this->Text->truncate($user['User']['user_title'], 20),
array('class' => "nameOfUser")
);