Maybe I'm not using it right, but I'm using the sample in the manual.
Here's the code:
<?
$text = "A very long woooooooooooord.";
$newtext = wordwrap( $text, 8, "\n", 1);
echo "$newtext\n";
?>

Here's the output:
A very long wooooooo ooooord.

Here's what the manual says the output should be:
A very
long
wooooooo
ooooord.

Has anyone else had troubles with the wordwrap() function?  Do I need to
compile php with another flag to get this to work properly?

Thanks,
Tyler



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to