Lines Matching refs:wordwrap
2 Test wordwrap() function : basic functionality
5 echo "*** Testing wordwrap() : basic functionality ***\n";
12 // Calling wordwrap() with default arguments
13 var_dump( wordwrap($str) );
15 // Calling wordwrap() with all possible optional arguments
17 var_dump( wordwrap($str, $width) );
19 var_dump( wordwrap($str, $width, $break) );
21 // Calling wordwrap() with all arguments
25 var_dump( wordwrap($str, $width, $break, $cut) );
30 var_dump( wordwrap($str, $width, $break, $cut) );
34 *** Testing wordwrap() : basic functionality ***