This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

  • PHP array_change_key_case() Function

  • Definition and Usage

    The array_change_key_case() function changes all keys in an array to lowercase or uppercase.

    Syntax

    array_change_key_case(array, case)

    Parameter Values

    Parameter Description
    array Required. Specifies the array to use
    case Optional. Possible values:
    • CASE_LOWER - Default value. Changes the keys to lowercase
    • CASE_UPPER - Changes the keys to uppercase

    Technical Details

    Return Value: Returns an array with its keys in lowercase or uppercase, or FALSE if array is not an array
    PHP Version: 4.2+

    Examples

    Example 1: Change all keys in an array to lowercase

    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));
    ?>
    Example 2: Special rules for changing key case

    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));
    ?>
    Navigate this PHP reference guide

    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

    PHP Quiz