Test: /ext/standard/tests/array/array_change_key_case_variation6.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- -- Pass a two-dimensional array as $input argument --
004- array(3) {
005- ["ENGLISH"]=>
006- array(3) {
007- ["one"]=>
008- int(1)
009- ["two"]=>
010- int(2)
011- ["three"]=>
012- int(3)
013- }
014- ["FRENCH"]=>
015- array(3) {
016- ["un"]=>
017- int(1)
018- ["deux"]=>
019- int(2)
020- ["trois"]=>
021- int(3)
022- }
023- ["GERMAN"]=>
024- array(3) {
025- ["eins"]=>
026- int(1)
027- ["zwei"]=>
028- int(2)
029- ["drei"]=>
030- int(3)
031- }
032- }
033-
034- -- Pass a sub-arry as $input argument --
035- array(3) {
036- ["ONE"]=>
037- int(1)
038- ["TWO"]=>
039- int(2)
040- ["THREE"]=>
041- int(3)
042- }
043- Done