Ver Mensaje Individual
  #6 (permalink)  
Antiguo 06/08/2008, 13:38
Avatar de farra
farra
 
Fecha de Ingreso: marzo-2008
Ubicación: Aqui estoy
Mensajes: 574
Antigüedad: 16 años, 1 mes
Puntos: 20
De acuerdo Respuesta: Cómo hacer resumen de las noticias

Código PHP:
<?php
if (!function_exists("cortartexto")) {
function 
cortartexto($texto,$largomax){
//inicio
$cantidad strlen(strip_tags($texto));
    if(
$cantidad $largomax){    
        
$contenido substr(strip_tags($texto), 0$largomax)."...";
    }else{
        
$contenido strip_tags($texto);
    }
//fin 

//retorna resultado
return $contenido;
}
}


$texto 'The Dutch shop worker who said she may have seen Madeleine McCann has criticised detectives for not following up her story.

The possible sighting was reported to Portuguese officers in June last year - but it has only now been made public with the release of previously secret police files.

The girl entered Ms Stam\'s party shop in early May last year with a man and a woman and two other children, according to a witness statement to Dutch police.'
;

echo 
cortartexto($texto,20);

?> <a href="noticia.php?cod=<?php echo $codnoticia?>">más información...</a>
__________________
Firma:
Es mas dificil para el mono entender que el hombre desciende de el....

PD: Siempre doy karma al que me da una buena respuesta... ;0)