首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

怎么在cakephp中截取中文字符串

2012-08-13 
如何在cakephp中截取中文字符串?原本以为要自己写helper去截取中文字符串,没想到cakephp的Text helper类中

如何在cakephp中截取中文字符串?
原本以为要自己写helper去截取中文字符串,没想到cakephp的Text helper类中已经提供了truncate方法。下面是truncate方法的原型。

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

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

热点排行