黑马程序员技术交流社区

标题: 【上海校区】如何在cakephp中截取中文字符串? [打印本页]

作者: 梦缠绕的时候    时间: 2019-1-28 10:48
标题: 【上海校区】如何在cakephp中截取中文字符串?
原本以为要自己写helper去截取中文字符串,没想到cakephp的Text helper类中已经提供了truncate方法。下面是truncate方法的原型。

引用
truncate
    truncate(string $text, int $length=100, array $options)
    Cuts a string to the $length and adds a suffix with ‘ending’ if the text is longer than $length. If ‘exact’ is passed as false, the truncation will occur after the next word ending. If ‘html’ is passed as true, html tags will be respected and will not be cut off.



Text->truncate方法有3个参数:


下面的代码演示了如何使用tuncate方法:

Php代码 [url=][/url]
  • echo $this->Text->truncate(
  •     'The killer crept forward and tripped on the rug.',
  •     22,
  •     array(
  •         'ending' => '...',
  •         'exact' => false
  •     )
  • );

echo $this->Text->truncate(    'The killer crept forward and tripped on the rug.',    22,    array(        'ending' => '...',        'exact' => false    ));

上面的代码将输出The killer crept…
注意:如果是截取中文字符串的话exact最好置为true,否则汉语字符将无法被截断

作者: 不二晨    时间: 2019-2-14 14:41
奈斯




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2