Lines Matching refs:break
2 Test wordwrap() function : usage variations - valid break arguments(spaces)
6 *test wordwrap() with break arguments as single spaces
16 echo "\n-- Testing wordwrap() with default break value and single space as value --\n";
17 echo "-- with default break and cut value --\n";
18 var_dump( wordwrap($str, $width) ); // default break and cut value
21 $break = ' ';
23 var_dump( wordwrap($str, $width, $break) );
28 var_dump( wordwrap($str, $width, $break, $cut) );
33 var_dump( wordwrap($str, $width, $break, $cut) );
41 -- Testing wordwrap() with default break value and single space as value --
42 -- with default break and cut value --