Ver Mensaje Individual
  #2 (permalink)  
Antiguo 31/10/2007, 23:54
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 8 meses
Puntos: 2135
Re: cortar texto por palabras y no por caracteres...!!!

Puedes probar con esta funcion:
Código PHP:
<?php
    
function limit_text($text$limit) {
      if (
strlen($text) > $limit) {
          
$words str_word_count($text2);
          
$pos array_keys($words);
          
$text substr($text0$pos[$limit]) . '...';
      }
      return 
$text;
    }
?>
Saludos.