script anteprima testo e link "leggi tutto"

luigi777

Utente Attivo
14 Feb 2008
1.086
1
38
42
Massa, Italy
Salve, volevo sapere visto che ho trovato questa funzione nel post in rilevo ..
volevo sapere come faccio a fare l'anteprima del testo e far apparire leggi tutto alcune volte si alcune volte no e decido io quando voglio far apparire nella notizia che vado a creare io..

vi posto il codice:
PHP:
 <?php
function intro($testo, $lung_max, $finale) {
       return (count($str = explode(' ', $testo)) > $lung_max) 
      ?implode(' ', array_slice($str, 0, $lung_max)) . $finale : $testo;
   }
   
   
   //per cui:
   $testo = "Testo testo testo testo testo testo testo testo testo testo testo testo";
   
   $lung_max = 10;
   $finale = "...";
   $intro = intro($testo, $lung_max, $finale);
   echo $intro;
   //stampa "Testo testo .."
?>

come posso fare??

grazie mille.
 

Discussioni simili