????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.135.204.121 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/array/ |
Upload File : |
--TEST-- Test array_fill() function : usage variations - different types of array values for 'val' argument --FILE-- <?php /* Prototype : array array_fill(int $start_key, int $num, mixed $val) * Description: Create an array containing num elements starting with index start_key each initialized to val * Source code: ext/standard/array.c */ /* * testing array_fill() by passing different types of array values for 'val' argument */ echo "*** Testing array_fill() : usage variations ***\n"; // Initialise function arguments not being substituted $start_key = 0; $num = 2; //array of different types of array values for 'val' argument $values = array( /* 1 */ array(), array(1 , 2 , 3 , 4), array(1 => "Hi" , 2 => "Hello"), array("Saffron" , "White" , "Green"), /* 5 */ array('color' => 'red' , 'item' => 'pen'), array( 'color' => 'red' , 2 => 'green ' ), array("colour" => "red" , "item" => "pen"), array( TRUE => "red" , FALSE => "green" ), array( true => "red" , FALSE => "green" ), /* 10 */ array( 1 => "Hi" , "color" => "red" , 'item' => 'pen'), array( NULL => "Hi", '1' => "Hello" , "1" => "Green"), array( ""=>1, "color" => "green"), /* 13 */ array('Saffron' , 'White' , 'Green') ); // loop through each element of the values array for 'val' argument // check the working of array_fill() echo "--- Testing array_fill() with different types of array values for 'val' argument ---\n"; $counter = 1; for($i = 0; $i < count($values); $i++) { echo "-- Iteration $counter --\n"; $val = $values[$i]; var_dump( array_fill($start_key , $num , $val) ); $counter++; } echo "Done"; ?> --EXPECTF-- *** Testing array_fill() : usage variations *** --- Testing array_fill() with different types of array values for 'val' argument --- -- Iteration 1 -- array(2) { [0]=> array(0) { } [1]=> array(0) { } } -- Iteration 2 -- array(2) { [0]=> array(4) { [0]=> int(1) [1]=> int(2) [2]=> int(3) [3]=> int(4) } [1]=> array(4) { [0]=> int(1) [1]=> int(2) [2]=> int(3) [3]=> int(4) } } -- Iteration 3 -- array(2) { [0]=> array(2) { [1]=> string(2) "Hi" [2]=> string(5) "Hello" } [1]=> array(2) { [1]=> string(2) "Hi" [2]=> string(5) "Hello" } } -- Iteration 4 -- array(2) { [0]=> array(3) { [0]=> string(7) "Saffron" [1]=> string(5) "White" [2]=> string(5) "Green" } [1]=> array(3) { [0]=> string(7) "Saffron" [1]=> string(5) "White" [2]=> string(5) "Green" } } -- Iteration 5 -- array(2) { [0]=> array(2) { ["color"]=> string(3) "red" ["item"]=> string(3) "pen" } [1]=> array(2) { ["color"]=> string(3) "red" ["item"]=> string(3) "pen" } } -- Iteration 6 -- array(2) { [0]=> array(2) { ["color"]=> string(3) "red" [2]=> string(6) "green " } [1]=> array(2) { ["color"]=> string(3) "red" [2]=> string(6) "green " } } -- Iteration 7 -- array(2) { [0]=> array(2) { ["colour"]=> string(3) "red" ["item"]=> string(3) "pen" } [1]=> array(2) { ["colour"]=> string(3) "red" ["item"]=> string(3) "pen" } } -- Iteration 8 -- array(2) { [0]=> array(2) { [1]=> string(3) "red" [0]=> string(5) "green" } [1]=> array(2) { [1]=> string(3) "red" [0]=> string(5) "green" } } -- Iteration 9 -- array(2) { [0]=> array(2) { [1]=> string(3) "red" [0]=> string(5) "green" } [1]=> array(2) { [1]=> string(3) "red" [0]=> string(5) "green" } } -- Iteration 10 -- array(2) { [0]=> array(3) { [1]=> string(2) "Hi" ["color"]=> string(3) "red" ["item"]=> string(3) "pen" } [1]=> array(3) { [1]=> string(2) "Hi" ["color"]=> string(3) "red" ["item"]=> string(3) "pen" } } -- Iteration 11 -- array(2) { [0]=> array(2) { [""]=> string(2) "Hi" [1]=> string(5) "Green" } [1]=> array(2) { [""]=> string(2) "Hi" [1]=> string(5) "Green" } } -- Iteration 12 -- array(2) { [0]=> array(2) { [""]=> int(1) ["color"]=> string(5) "green" } [1]=> array(2) { [""]=> int(1) ["color"]=> string(5) "green" } } -- Iteration 13 -- array(2) { [0]=> array(3) { [0]=> string(7) "Saffron" [1]=> string(5) "White" [2]=> string(5) "Green" } [1]=> array(3) { [0]=> string(7) "Saffron" [1]=> string(5) "White" [2]=> string(5) "Green" } } Done