如何在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,否则汉语字符将无法被截断