mirror of
https://github.com/php/php-src.git
synced 2025-01-08 20:17:28 +08:00
14 lines
219 B
PHP
14 lines
219 B
PHP
--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
|