Annotation of embedaddon/php/ext/standard/tests/strings/bug28386.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #28386 (wordwrap() wraps text 1 character too soon)
        !             3: --FILE--
        !             4: <?php
        !             5: $text = "Some text";
        !             6: $string = "$text $text $text $text";
        !             7: echo wordwrap($string, 9);
        !             8: ?>
        !             9: --EXPECT--
        !            10: Some text
        !            11: Some text
        !            12: Some text
        !            13: Some text

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>