????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.191.254.28 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/standard/tests/strings/ |
Upload File : |
--TEST-- Test wordwrap() function : usage variations - valid break arguments(spaces) --FILE-- <?php /* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] ) * Description: Wraps buffer to selected number of characters using string break char * Source code: ext/standard/string.c */ /* *test wordwrap() with break arguments as single spaces */ echo "*** Testing wordwrap() : usage variations ***\n"; // Initialize all required variables $str = "Testing wordrap function"; $width = 1; $cut = false; echo "\n-- Testing wordwrap() with default break value and single space as value --\n"; echo "-- with default break and cut value --\n"; var_dump( wordwrap($str, $width) ); // default break and cut value echo "-- with default cut value --\n"; $break = ' '; $break1 = " "; var_dump( wordwrap($str, $width, $break) ); var_dump( wordwrap($str, $width, $break1) ); echo "-- with cut value as false --\n"; $cut = false; var_dump( wordwrap($str, $width, $break, $cut) ); var_dump( wordwrap($str, $width, $break1, $cut) ); echo "-- with cut value as true --\n"; $cut = true; var_dump( wordwrap($str, $width, $break, $cut) ); var_dump( wordwrap($str, $width, $break1, $cut) ); echo "Done\n"; ?> --EXPECTF-- *** Testing wordwrap() : usage variations *** -- Testing wordwrap() with default break value and single space as value -- -- with default break and cut value -- string(24) "Testing wordrap function" -- with default cut value -- string(24) "Testing wordrap function" string(26) "Testing wordrap function" -- with cut value as false -- string(24) "Testing wordrap function" string(26) "Testing wordrap function" -- with cut value as true -- string(43) "T e s t i n g w o r d r a p f u n c t i o n" string(64) "T e s t i n g w o r d r a p f u n c t i o n" Done