This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
The array_change_key_case() function changes all keys in an array to lowercase or uppercase.
array_change_key_case(array, case)
Parameter | Description |
---|---|
array | Required. Specifies the array to use |
case | Optional. Possible values:
|
Return Value: | Returns an array with its keys in lowercase or uppercase, or FALSE if array is not an array |
PHP Version: | 4.2+ |
Change all keys in an array to lowercase:
<?php $age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43"); print_r(array_change_key_case($age,CASE_LOWER)); ?>
If two or more keys will be equal after running array_change_key_case() (e.g. "b" and "B"), the latest array will override the other:
<?php $pets=array("a"=>"Cat","B"=>"Dog","c"=>"Horse","b"=>"Bird"); print_r(array_change_key_case($pets,CASE_UPPER)); ?>
Eventually the navigation links, above, will be replaced by these (previous) and (next) buttons below.
Animated PHP icons used in the buttons provided by ICONS8.COM. Smartphone icons created by Freepik - Flaticon