View Single Post
ישן 11-11-07, 10:19   # 2
fulsyp
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Jul 2007
הודעות: 77

fulsyp לא מחובר  

PHP קוד:
function getTextMaxLength($text,$maxLength){
if(
$text $maxLength){
return 
$text;
}
$theReturnedText "";
for(
$i=0;$<strlen($text);$i++){
$theReturnedText .= $text{$i};
}
return 
$therReturnText "...";

הינה דוגמא:
PHP קוד:
$x "הינה טקסט משהו משהו משהו";
echo 
getTextMaxLength($x,10); 
זה ידפיס לך
הינה טקסט מ...
  Reply With Quote