Free cookie consent management tool by TermsFeed Generator PHP array change key case | Amir Kamizi
AMIR KAMIZI
Home Blog Courses Books Newsletter Store Membership Buy me a coffee
PHP array change key case

PHP array change key case

Last Updated on Feb 14, 2023

Introduction

Sometimes you might change the case of the keys in your array. Maybe you want to have consistency of data, maybe you want to convert it to json and you want it to be the same format.

For whatever reason, it does not matter, it’s very easy to do that.

Array Change Key Case

You can pass your array to array_change_key_case

array_change_key_case(array,case)

The first argument is your array

And the second argument is CASE_UPPER or CASE_LOWER. Default is CASE_LOWER

It’s a very useful function especially when you load your data to an associative array from another source and the keys are not consistent.

In an associative array you should get the value by key and if the key is not consistent in being lower or uppercase it would be annoying to remember all of that.

We can easily use that function and fix it

Let’s see an example

$array = ["twiTteR"=> 63, "PrathUm" => 891, "AmiR" => 47];
array_change_key_case($array, CASE_UPPER);
// Array (
//  [TWITTER] => 63
//  [PRATHUM] => 891
//  [AMIR] => 47
// )

Conclusion

Now you know about array change key case in PHP.

I recommend you to open a PHP files define arrays with different key cases. Then try to use this function to change all of them to lower or upper case.

If you have any suggestions, questions, or opinions, please contact me. I’m looking forward to hearing from you!

Key takeaways

  • array change key case in php
  • lower case arrays keys
  • upper case array keys

Category: programming

Tags: #php #array

Join the Newsletter

Subscribe to get my latest content by email.

I won't send you spam. Unsubscribe at any time.

Related Posts

git branch workflow: 7 easy steps (video)
Nov 27, 2022 programming

git branch workflow: 7 easy steps (video)

Transcription Hello This is amir Today we are going to talk about git branching workflow I will go through it step by step and help you understand the process ...

9 Min Read Read More
PHP Array Unique
Feb 14, 2023 programming

PHP Array Unique

Today we are going to talk about array unique function in PHP. It's a very good way to remove duplicated values from an array and change it to an array of unique values. ...

5 Min Read Read More
PHP Array Chunk
Feb 14, 2023 programming

PHP Array Chunk

Today we are going to talk about array chunk function in PHP. Sometimes you have to deal with a very large array of data. we'll learn how to split the array in different chunks. ...

6 Min Read Read More
PHP Testing with PHPUnit and Pest
Mar 22, 2023 programming

PHP Testing with PHPUnit and Pest

Today we are going to write tests with PHPUnit and Pest in PHP. Testing is a very important step in developing an application. phpunit and pest make it really easy to write tests in php ...

12 Min Read Read More

Recommended Courses

Introduction to Machine Learning in PHP

Introduction to Machine Learning in PHP

Learn to Build Different Machine Learning Models Easily ...

PHP Tutorial Beginner to Advanced

PHP Tutorial Beginner to Advanced

Learn everything you need to start a successful career as a PHP developer ...