Función que trunca texto con palabras completas


/ Published in: PHP
Save to your folder(s)

Esta función sólo trunca una cadena cuando encuentra el punto de ruptura que le indiquemos -un espacio,
un punto, dos puntos,..- y resulta muy útil, por ejemplo, para mostrar un extracto de un artículo
completo sin romper las palabras.


Copy this code and paste it in your HTML
  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.  
  5. // return with no change if string is shorter than $limit
  6. if(strlen($string) <= $limit)
  7. return $string;
  8.  
  9. // is $break present between $limit and the end of the string?
  10. if(false !== ($breakpoint = strpos($string, $break, $limit))) {
  11. if($breakpoint < strlen($string) - 1) {
  12. $string = substr($string, 0, $breakpoint) . $pad;
  13. }
  14. }
  15. return $string;
  16. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.