截断PHP返回的文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了截断PHP返回的文本相关的知识,希望对你有一定的参考价值。

// quick function to cut back on the length of content
  1. function trunCate($string, $limit, $break=".", $pad="...") {
  2. // return with no change if string is shorter than $limit
  3. if(strlen($string) <= $limit) return $string;
  4. // is $break present between $limit and the end of the string?
  5. if(false !== ($breakpoint = strpos($string, $break, $limit))){
  6. if($breakpoint < strlen($string) - 1){
  7. $string = substr($string, 0, $breakpoint) . $pad;
  8. }
  9. }
  10. return $string;
  11. }

以上是关于截断PHP返回的文本的主要内容,如果未能解决你的问题,请参考以下文章

如何从数据库中截断多行文本? (html/css/php)

php 截断ACF文本框

PHP 截断文本保留关键字

PHP 在Word Break中截断文本

PHP 在分词时截断文本

sql server 导入平面文件源数据,错误 0xc02020a1错误 0xc020902a 错误 0xc02020c5,返回状态值 4 和状态文本“文本被截断,或者一个或多个字符在目标代码页...