function word_wrap_pass($message) {
$maxChars = 70;
$curCount = 0;
$tempText = "";
$finalText = "";
$inTag = false;
for ($num=0;$num<strlen($message);$num++) {
$curChar = $message{$num};
if ($curChar == "<") {
$tempText .= "<";
$inTag = true;
} elseif ($inTag && $curChar == ">") {
$tempText .= ">";
$inTag = false;
} elseif ($inTag)
$tempText .= $curChar;
elseif ($curChar == " ") { // at this point, !$inTag is assumed.
$finalText .= $tempText . " ";
$tempText = "";
$curCount = 0;
} elseif ($curCount >= $maxChars) {
$finalText .= $tempText . $curChar . " ";
$tempText = "";
$curCount = 0;
} else {
$tempText .= $curChar;
$curCount++;
}
}
return $finalText . $tempText;
}
echo word_wrap_pass(nl2br($message));
Quote
Craig wrote:
BB Codes you mean you just have to edit your post and remove the tags something like [ b ].
Category Forum
Content Administration - 8Labels
None yet
Statistics
3 participants
Notifications
You are not receiving notifications from this thread.
Related Questions