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

php在字符断点处截断文字的代码一例

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

  1. //所谓断字 (word break),即一个单词可在转行时断开的地方。这一函数将在断字处截断字符串。
  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. ?>

人气教程排行