123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- --TEST--
- Test array_push() function
- --FILE--
- <?php
- /* Prototype: int array_push( array &array );
- * Description: Push one or more elements onto the end of array
- and returns the new number of elements in the array.
- */
- $empty_array = array();
- $number = 5;
- $str = "abc";
- /* Various combinations of arrays to be used for the test */
- $mixed_array = array(
- array(),
- array( 1,2,3,4,5,6,7,8,9 ),
- array( "One", "_Two", "Three", "Four", "Five" ),
- array( 6, "six", 7, "seven", 8, "eight", 9, "nine" ),
- array( "a" => "aaa", "A" => "AAA", "c" => "ccc", "d" => "ddd", "e" => "eee" ),
- array( "1" => "one", "2" => "two", "3" => "three", "4" => "four", "5" => "five" ),
- array( 1 => "one", 2 => "two", 3 => 7, 4 => "four", 5 => "five" ),
- array( "f" => "fff", "1" => "one", 4 => 6, "" => "blank", 2.4 => "float", "F" => "FFF",
- "blank" => "", 3.7 => 3.7, 5.4 => 7, 6 => 8.6, '5' => "Five", "4name" => "jonny", "a" => NULL, NULL => 3 ),
- array( 12, "name", 'age', '45' ),
- array( array("oNe", "tWo", 4), array(10, 20, 30, 40, 50), array() ),
- array( "one" => 1, "one" => 2, "three" => 3, 3, 4, 3 => 33, 4 => 44, 5, 6,
- 5.4 => 54, 5.7 => 57, "5.4" => 554, "5.7" => 557 )
- );
- /* Error Conditions */
- echo "\n*** Testing Error Conditions ***\n";
- /* Zero argument */
- var_dump( array_push() );
- /* Scalar argument */
- var_dump( array_push($number, 22) );
- /* String argument */
- var_dump( array_push($str, 22) );
- /* Invalid Number of arguments */
- var_dump( array_push($mixed_array[1],1,2) );
- /* Empty Array as argument */
- var_dump( array_push($empty_array, 2) );
- /* Loop to test normal functionality with different arrays inputs */
- echo "\n*** Testing with various array inputs ***\n";
- $counter = 1;
- foreach( $mixed_array as $sub_array )
- {
- echo "\n-- Input Array for Iteration $counter is --\n";
- print_r( $sub_array );
- echo "\nOutput after push is :\n";
- var_dump( array_push($sub_array, 22, "abc") );
- $counter++;
- }
- /* Checking for return value and the new array formed from push operation */
- echo "\n*** Checking for return value and the new array formed from push operation ***\n";
- var_dump( array_push($mixed_array[2], 22, 33, "44") );
- var_dump( $mixed_array[2] );
- echo"\nDone";
- ?>
- --EXPECTF--
- *** Testing Error Conditions ***
- Warning: array_push() expects at least 2 parameters, 0 given in %s on line %d
- NULL
- Warning: array_push() expects parameter 1 to be array, integer given in %s on line %d
- NULL
- Warning: array_push() expects parameter 1 to be array, string given in %s on line %d
- NULL
- int(11)
- int(1)
- *** Testing with various array inputs ***
- -- Input Array for Iteration 1 is --
- Array
- (
- )
- Output after push is :
- int(2)
- -- Input Array for Iteration 2 is --
- Array
- (
- [0] => 1
- [1] => 2
- [2] => 3
- [3] => 4
- [4] => 5
- [5] => 6
- [6] => 7
- [7] => 8
- [8] => 9
- [9] => 1
- [10] => 2
- )
- Output after push is :
- int(13)
- -- Input Array for Iteration 3 is --
- Array
- (
- [0] => One
- [1] => _Two
- [2] => Three
- [3] => Four
- [4] => Five
- )
- Output after push is :
- int(7)
- -- Input Array for Iteration 4 is --
- Array
- (
- [0] => 6
- [1] => six
- [2] => 7
- [3] => seven
- [4] => 8
- [5] => eight
- [6] => 9
- [7] => nine
- )
- Output after push is :
- int(10)
- -- Input Array for Iteration 5 is --
- Array
- (
- [a] => aaa
- [A] => AAA
- [c] => ccc
- [d] => ddd
- [e] => eee
- )
- Output after push is :
- int(7)
- -- Input Array for Iteration 6 is --
- Array
- (
- [1] => one
- [2] => two
- [3] => three
- [4] => four
- [5] => five
- )
- Output after push is :
- int(7)
- -- Input Array for Iteration 7 is --
- Array
- (
- [1] => one
- [2] => two
- [3] => 7
- [4] => four
- [5] => five
- )
- Output after push is :
- int(7)
- -- Input Array for Iteration 8 is --
- Array
- (
- [f] => fff
- [1] => one
- [4] => 6
- [] => 3
- [2] => float
- [F] => FFF
- [blank] =>
- [3] => 3.7
- [5] => Five
- [6] => 8.6
- [4name] => jonny
- [a] =>
- )
- Output after push is :
- int(14)
- -- Input Array for Iteration 9 is --
- Array
- (
- [0] => 12
- [1] => name
- [2] => age
- [3] => 45
- )
- Output after push is :
- int(6)
- -- Input Array for Iteration 10 is --
- Array
- (
- [0] => Array
- (
- [0] => oNe
- [1] => tWo
- [2] => 4
- )
- [1] => Array
- (
- [0] => 10
- [1] => 20
- [2] => 30
- [3] => 40
- [4] => 50
- )
- [2] => Array
- (
- )
- )
- Output after push is :
- int(5)
- -- Input Array for Iteration 11 is --
- Array
- (
- [one] => 2
- [three] => 3
- [0] => 3
- [1] => 4
- [3] => 33
- [4] => 44
- [5] => 57
- [6] => 6
- [5.4] => 554
- [5.7] => 557
- )
- Output after push is :
- int(12)
- *** Checking for return value and the new array formed from push operation ***
- int(8)
- array(8) {
- [0]=>
- string(3) "One"
- [1]=>
- string(4) "_Two"
- [2]=>
- string(5) "Three"
- [3]=>
- string(4) "Four"
- [4]=>
- string(4) "Five"
- [5]=>
- int(22)
- [6]=>
- int(33)
- [7]=>
- string(2) "44"
- }
- Done
|