????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.188.250.166 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 trim() function --FILE-- <?php /* Prototype: string trim( string str [,string charlist] ) * Strip whitespace (or other characters) from the beginning and end of a string. */ /* trim with unset/null/boolean variable - retuns an empty string */ echo "\n"; $null_var = NULL; var_dump( trim($null_var) ); $null_var = ""; var_dump( trim($null_var) ); $null_var = 0; var_dump( trim($null_var) ); $bool_val = true; var_dump( trim($null_var) ); /* second argument charlist as null - does not trim any white spaces */ var_dump( trim("\ttesting trim", "") ); var_dump( trim(" \ttesting trim ", NULL) ); var_dump( trim("\ttesting trim ", true) ); /* Testing error conditions */ echo "\n*** Testing error conditions ***\n"; //Zero arguments var_dump( trim() ); // More than expected number of args */ var_dump( trim("\tstring\n", "\t\n", $null_var) ); var_dump( trim(NULL, "", NULL ) ); /* Use of class and objects */ echo "\n*** Testing with OBJECTS ***\n"; class string1 { public function __toString() { return "Object"; } } $obj = new string1; var_dump( trim($obj, "Ot") ); /* String with embedded NULL */ echo "\n*** Testing with String with embedded NULL ***\n"; var_dump( trim("\x0n1234\x0005678\x0000efgh\xijkl\x0n1", "\x0n1") ); /* heredoc string */ $str = <<<EOD us ing heredoc string EOD; echo "\n*** Testing with heredoc string ***\n"; var_dump( trim($str, "us\ning") ); echo "\nDone"; ?> --EXPECTF-- string(0) "" string(0) "" string(1) "0" string(1) "0" string(13) " testing trim" string(17) " testing trim " string(15) " testing trim " *** Testing error conditions *** Warning: trim() expects at least 1 parameter, 0 given in %s on line %d NULL Warning: trim() expects at most 2 parameters, 3 given in %s on line %d NULL Warning: trim() expects at most 2 parameters, 3 given in %s on line %d NULL *** Testing with OBJECTS *** string(4) "bjec" *** Testing with String with embedded NULL *** string(22) "234 05678 00efgh\xijkl" *** Testing with heredoc string *** string(12) " heredoc str" Done