博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何在cakephp中截取中文字符串?
阅读量:6860 次
发布时间:2019-06-26

本文共 866 字,大约阅读时间需要 2 分钟。

hot3.png

原本以为 要自己写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个参数:
  • $text:需要截取的字符串
  • $length:需要截取的长度,默认是截取100个字符
  • $options:数组参数。ending表示在截取后的字符串结尾加上ending字符串;exact如果是false的话则不会截断word;html如果是true的话则不会截断html tag
下面的代码演示了如何使用tuncate方法:
Php代码  
收藏代码
  1. echo $this->Text->truncate(  
  2.     'The killer crept forward and tripped on the rug.',  
  3.     22,  
  4.     array(  
  5.         'ending' => '...',  
  6.         'exact' => false  
  7.     )  
  8. );  
上面 的代码将输出
The killer crept…
注意:如果是截取中文字符串的话exact最好置为true,否则汉语字符将无法被截断 (fblww-0308)

转载于:https://my.oschina.net/u/224509/blog/42964

你可能感兴趣的文章
2018年阿里云NoSQL数据库大事盘点
查看>>
mysql中int、bigint、smallint 和 tinyint的区别详细介绍
查看>>
如何查看一个网址(域名)是否做了301跳转
查看>>
seekbar 相关
查看>>
mongoDB
查看>>
java B2B2C springmvc mybatis仿淘宝电子商城系统-整合企业架构的技术点
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
centos批量修改文件名
查看>>
Struts 自己的总结报告
查看>>
急是没有用的
查看>>
AT&T汇编学习笔记(一)
查看>>
IBM专家集成系统讲究预置能力 打造开放的云
查看>>
开源日志系统比较
查看>>
Red hat linux 安装
查看>>
ubuntu samba服务器
查看>>
利用脚本在Virtualbox中部署fuel Openstack
查看>>
Jetty - 嵌入式运行Servlet
查看>>
同一个服务器安装两个tomcat
查看>>
链表的插入排序 Insertion Sort List
查看>>