0

echo $this->Html->tag('span',$user['User']['user_title'], array('class' => "nameOfUser");

### 在此标签中,我想将 user_title 截断为 20 个字符。那么我如何在 HTML 标签中使用截断?

4

1 回答 1

0

使用文本助手;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")
);
于 2013-03-15T23:32:13.060 回答