/PHP-7.3/ext/standard/tests/array/ |
H A D | array_push_error1.phpt | 2 Test array_push() function : error conditions - Pass incorrect number of args 5 /* Prototype : int array_push(array $stack[, mixed $...]) 11 * Pass incorrect number of arguments to array_push() to test behaviour 14 echo "*** Testing array_push() : error conditions ***\n"; 16 // Testing array_push with one less than the expected number of arguments 17 echo "\n-- Testing array_push() function with less than expected no. of arguments --\n"; 18 var_dump( array_push() ); 23 *** Testing array_push() : error conditions *** 25 -- Testing array_push() function with less than expected no. of arguments -- 27 Warning: array_push() expects at least 1 parameter, 0 given in %s on line %d
|
H A D | array_push_variation1.phpt | 2 Test array_push() function : usage variations - Pass different data types as $stack arg 5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...]) 11 * Pass different data types as $stack argument to array_push() to test behaviour 14 echo "*** Testing array_push() : usage variations ***\n"; 88 // loop through each element of $inputs to check the behavior of array_push() 92 var_dump( array_push($input, $var) ); 101 *** Testing array_push() : usage variations *** 105 Warning: array_push() expects parameter 1 to be array, int given in %s on line %d 110 Warning: array_push() expects parameter 1 to be array, int given in %s on line %d 115 Warning: array_push() expects parameter 1 to be array, int given in %s on line %d [all …]
|
H A D | array_push_variation5.phpt | 2 Test array_push() function : usage variations - position of internal array pointer 5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...]) 11 * Check the position of the internal array pointer after calling array_push() 14 echo "*** Testing array_push() : usage variations ***\n"; 19 echo "\n-- Call array_push() --\n"; 20 var_dump($result = array_push($stack, $var0)); 28 *** Testing array_push() : usage variations *** 30 -- Call array_push() --
|
H A D | array_push_variation3.phpt | 2 Test array_push() function : usage variations - multidimensional arrays 5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...]) 11 * Test array_push when passed: 16 echo "*** Testing array_push() : usage variations ***\n"; 21 var_dump(array_push($array, $sub_array)); 25 var_dump(array_push($array[3], 'a')); 31 *** Testing array_push() : usage variations ***
|
H A D | array_push_basic.phpt | 2 Test array_push() function : basic functionality 5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...]) 11 * Test basic functionality of array_push with indexed and associative arrays 14 echo "*** Testing array_push() : basic functionality ***\n"; 21 var_dump(array_push($array, $var1, $var2)); 27 var_dump(array_push($array_assoc, $var1, $var2)); 33 *** Testing array_push() : basic functionality ***
|
H A D | array_push_error2.phpt | 2 Test array_push() function : error conditions - max int value as key 5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...]) 15 echo "*** Testing array_push() : error conditions ***\n"; 19 var_dump(array_push($array, 'new')); 25 *** Testing array_push() : error conditions *** 27 Warning: array_push(): Cannot add element to the array as the next element is already occupied in %…
|
H A D | array_push_empty.phpt | 2 Test array_push() function : push empty set to the array 5 /* Prototype : int array_push(array $stack[, mixed $...]) 13 var_dump( array_push($array) ); 14 var_dump( array_push($array, ...$values) );
|
H A D | array_push_variation2.phpt | 2 Test array_push() function : usage variations - Pass different data types as $var arg 5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...]) 11 * Pass different data types as $var argument to array_push to test behaviour 14 echo "*** Testing array_push() : usage variations ***\n"; 88 // loop through each element of $inputs to check the behavior of array_push() 93 var_dump( array_push($temp_array, $input) ); 102 *** Testing array_push() : usage variations ***
|
H A D | array_push.phpt | 2 Test array_push() function 6 /* Prototype: int array_push( array &array ); 37 var_dump( array_push() ); 40 var_dump( array_push($number, 22) ); 43 var_dump( array_push($str, 22) ); 46 var_dump( array_push($mixed_array[1],1,2) ); 49 var_dump( array_push($empty_array, 2) ); 61 var_dump( array_push($sub_array, 22, "abc") ); 67 var_dump( array_push($mixed_array[2], 22, 33, "44") ); 75 Warning: array_push() expects at least 1 parameter, 0 given in %s on line %d [all …]
|
H A D | array_push_variation6.phpt | 2 Test array_push() function : usage variations - array keys are different data types 5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...]) 11 * Pass array_push arrays where the keys are different data types. 14 echo "*** Testing array_push() : usage variations ***\n"; 95 // loop through each sub-array of $inputs to check the behavior of array_push() 102 var_dump( array_push($input, $var) ); 109 *** Testing array_push() : usage variations ***
|
H A D | bug67693.phpt | 10 array_push($array, 0); 11 array_push($array, 0);
|
H A D | bug71837.phpt | 7 array_push($p[0], array(100));
|
H A D | 006.phpt | 14 array_push($a, "foobar");
|
H A D | bug36975.phpt | 17 array_push($b, 'bar');
|
/PHP-7.3/Zend/tests/ |
H A D | foreach_013.phpt | 2 array_push() function precerve foreach by reference iterator pointer 9 array_push($a, 4);
|
H A D | dtor_scope.phpt | 11 array_push($this->var, $a);
|
H A D | bug42817.phpt | 6 array_push($a->b, $c);
|
/PHP-7.3/ext/opcache/tests/ |
H A D | send_unpack_empty_array.phpt | 10 var_dump(array_push($array, 4, ...$values));
|
/PHP-7.3/ext/date/tests/ |
H A D | bug51819.phpt | 15 array_push($aTz, $sTz);
|
H A D | DateTimeZone_getLocation.phpt | 18 array_push($countryCode, $timeZoneArray['country_code']);
|
/PHP-7.3/tests/lang/ |
H A D | foreachLoop.009.phpt | 29 array_push($refedArray, "new.$k"); 43 array_push($refedArray, "new.$k");
|
H A D | foreachLoop.002.phpt | 33 array_push($a, "new.$counter"); 47 array_push($a, "new.$counter");
|
H A D | foreachLoop.010.phpt | 27 array_push($a, 'new');
|
/PHP-7.3/ext/standard/ |
H A D | php_array.h | 59 PHP_FUNCTION(array_push);
|
/PHP-7.3/ext/spl/internal/ |
H A D | spldoublylinkedlist.inc | 75 array_push($this->_llist, $data);
|