Test: /ext/standard/tests/array/array_push_variation3.phpt - Version 5.4.27-dev    

There is 1 diff reported by users for this test.

Count Diff
1 (100%)
001- *** Testing array_push() : usage variations ***
003- -- Pass array as $var argument --
004- int(4)
005- array(4) {
006- [0]=>
007- int(1)
008- [1]=>
009- int(2)
010- [2]=>
011- int(3)
012- [3]=>
013- array(2) {
014- [0]=>
015- string(3) "one"
016- [1]=>
017- string(3) "two"
018- }
019- }
020-
021- -- Pass sub-array as $stack argument --
022- int(3)
023- array(4) {
024- [0]=>
025- int(1)
026- [1]=>
027- int(2)
028- [2]=>
029- int(3)
030- [3]=>
031- array(3) {
032- [0]=>
033- string(3) "one"
034- [1]=>
035- string(3) "two"
036- [2]=>
037- string(1) "a"
038- }
039- }
040- Done