NewsletTux <Insérez ici votre vie /> | J'avais écrit une petite fonction pour ça, une fois, tu peux t'en inspirer...
Code :
- /*
- * ExtractText displays some characters of a whole text
- * input $text, the whole text {string}
- * input $max_char, number max of characted for a small text {int}
- *
- * @returns {string}
- */
- function ExtractText($text,$max_char)
- {
- // Test if length > limit
- if (strlen($text)>$max_char)
- {
- // Select maximum chars
- $text = substr($text, 0, $max_char);
- // Retrieving last whitespace position (no truncate word)
- $position_space = strrpos($text, " " );
- $text = substr($text, 0, $position_space);
- // Adding "..."
- $text = $text." [...]";
- }
- return $text;
- };
|
en paramètres : $text ton texte, $max_chars ton 160... ---------------
NewsletTux - outil de mailing list en PHP MySQL
|