
| Path : /usr/src/php/ext/standard/tests/strings/ |
| Current File : //usr/src/php/ext/standard/tests/strings/bug28386.phpt |
--TEST-- Bug #28386 (wordwrap() wraps text 1 character too soon) --FILE-- <?php $text = "Some text"; $string = "$text $text $text $text"; echo wordwrap($string, 9); ?> --EXPECT-- Some text Some text Some text Some text