编程语言
首页 > 编程语言> > 如何在cakephp中截取中文字符串?

如何在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    ));

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

xiaoyaGrace 发布了541 篇原创文章 · 获赞 1 · 访问量 8494 私信 关注

标签:truncate,截取,ending,length,字符串,cakephp,exact
来源: https://blog.csdn.net/xiaoyaGrace/article/details/104174836