Test: /ext/standard/tests/array/array_diff_assoc_basic.phpt - Version 5.6.0-dev    

There is 1 diff reported by users for this test.

Count Diff
3 (100%)
003+
004+ Warning: array_diff_assoc() expects parameter 2 to be a valid callback, array must have exactly two members in %s/array_diff_assoc_basic.php on line 20
005+ NULL
006+
007+ Warning: array_diff_assoc() expects parameter 2 to be a valid callback, array must have exactly two members in %s/array_diff_assoc_basic.php on line 21
008+ NULL
009+
010+ -- Compare Default keys to string keys --
011+
012+ Warning: array_diff_assoc() expects parameter 2 to be a valid callback, array must have exactly two members in %s/array_diff_assoc_basic.php on line 25
013+ NULL
014+
015+ Warning: array_diff_assoc() expects parameter 2 to be a valid callback, array must have exactly two members in %s/array_diff_assoc_basic.php on line 26
016+ NULL
017+
018+ -- Compare numeric keys to string keys --
019+
020+ Warning: array_diff_assoc() expects parameter 2 to be a valid callback, array must have exactly two members in %s/array_diff_assoc_basic.php on line 30
021+ NULL
003- array(3) {
004- [0]=>
005- string(3) "one"
006- [1]=>
007- int(2)
008- [2]=>
009- string(5) "three"
010- }
011- array(2) {
012- [1]=>
013- string(3) "one"
014- [2]=>
015- string(3) "two"
016- }
018- -- Compare Default keys to string keys --
019- array(3) {
020- [0]=>
023+ Warning: array_diff_assoc() expects parameter 2 to be a valid callback, array must have exactly two members in %s/array_diff_assoc_basic.php on line 31
024+ NULL
025+ Done
021- string(3) "one"
022- [1]=>
023- int(2)
024- [2]=>
025- string(5) "three"
026- }
027- array(2) {
028- [1]=>
029- string(3) "one"
030- [2]=>
031- string(3) "two"
032- }
033-
034- -- Compare numeric keys to string keys --
035- array(3) {
036- [1]=>
037- string(3) "one"
038- [2]=>
039- string(3) "two"
040- [3]=>
041- int(4)
042- }
043- array(3) {
044- ["one"]=>
045- int(1)
046- ["two"]=>
047- string(1) "2"
048- [3]=>
049- string(5) "three"
050- }
051- Done