当前位置:Gxlcms > PHP教程 > php在字符断字处截断文字的代码

php在字符断字处截断文字的代码

时间:2021-07-01 10:21:17 帮助过:13人阅读

  1. // Original PHP code by Chirp Internet: www.chirp.com.au

  2. // Please acknowledge use of this code by including this header.
  3. function myTruncate($string, $limit, $break=".", $pad="...") {
  4. // return with no change if string is shorter than $limit
  5. if(strlen($string) <= $limit)
  6. return $string;

  7. // is $break present between $limit and the end of the string?

  8. if(false !== ($breakpoint = strpos($string, $break, $limit))) {
  9. if($breakpoint < strlen($string) - 1) {
  10. $string = substr($string, 0, $breakpoint) . $pad;
  11. }
  12. }
  13. return $string;
  14. }
  15. /***** Example ****/
  16. $short_string=myTruncate($long_string, 100, ' ');
  17. ?>

人气教程排行