Test: /ext/standard/tests/array/array_change_key_case_variation7.phpt - Version 7.0.16    

There is 1 diff reported by users for this test.

Count Diff
1 (100%)
001+ sh: 1: /usr/van_dump/php-7.0.16/sapi/cli/php: Permission denied
001- *** Testing array_change_key_case() : usage variations ***
002-
003- -- $input argument is a reference to array --
004- Result:
005- array(3) {
006- ["ONE"]=>
007- int(1)
008- ["TWO"]=>
009- int(2)
010- ["ABC"]=>
011- string(3) "xyz"
012- }
013- Original:
014- array(3) {
015- ["one"]=>
016- int(1)
017- ["two"]=>
018- int(2)
019- ["ABC"]=>
020- string(3) "xyz"
021- }
022- Referenced:
023- array(3) {
024- ["one"]=>
025- int(1)
026- ["two"]=>
027- int(2)
028- ["ABC"]=>
029- string(3) "xyz"
030- }
031- Done