phpbar.de logo

Mailinglisten-Archive

[php] SUBSTR bis wordende

[php] SUBSTR bis wordende

Michael Borchers list at tridemail.de
Mit Jan 31 10:09:15 CET 2007


> Michael Borchers schrieb:
>> prinz. kann ich ja mit substr auf X zeichen limitieren a la
>> substr($str, 0, 10);
>>
>> dabei werden ganze wörter ja manchmal mit abgeschnitten. gibt es eine 
>> option
>> "bis zum zeichen X, aber das letzte wort nicht abschneiden, sondern noch
>> ausschreiben?!"
>
> nein - aber wordwrap() hilft dir da
>
>
> -- 
> Sebastian Mendel

Ein paar Zeilen tiefer half mir folgende Funktion!

lorang at e-connect dot lu

Hello,
If you nee a function that limits a text to a certain number of characters, 
but it should always keep the whole words, try this :

function limit_text($text,$maxchar){
   $split=explode(" ",$text);
   $i=0;
   while(TRUE){
       $len=(strlen($newtext)+strlen($split[$i]));
       if($len>$maxchar){
           break;
       }else{
       $newtext=$newtext." ".$split[$i];
       $i++;
       }
   }
return $newtext;
}

Danke 


php::bar PHP Wiki   -   Listenarchive