echo $this->Html->tag('span',$user['User']['user_title'], array('class' => "nameOfUser");
### 在此标签中,我想将 user_title 截断为 20 个字符。那么我如何在 HTML 标签中使用截断?
echo $this->Html->tag('span',$user['User']['user_title'], array('class' => "nameOfUser");
### 在此标签中,我想将 user_title 截断为 20 个字符。那么我如何在 HTML 标签中使用截断?
使用文本助手;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")
);