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

PHP Exec
Mar 22, 2023 programming

PHP Exec

Today we are going to talk about exec in PHP. Did you know we can run system commands through PHP? Well not only it’s possible but also it’s very easy. You can do it with exec function ...

3 Min Read Read More
PHP simple REST API
Feb 15, 2023 programming

PHP simple REST API

Today we are going to create a simple REST API in PHP. we are going to do it with pure PHP and with no frameworks. you can create a RESTful API in 70 lines of code. ...

25 Min Read Read More
PHP Simple Web Crawler
Mar 22, 2023 programming

PHP Simple Web Crawler

Today we are going to build a simple web crawler in PHP and parse the box office movies from IMDB. We can do it with PHP easily. We don’t even need any extra package. ...

14 Min Read Read More
Top Open Source Licenses: Understanding Your Options
May 07, 2024 programming

Top Open Source Licenses: Understanding Your Options

Open source licenses dictate how software can be used, modified, and distributed. Understanding the different types of licenses is essential for developer. ...

9 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 ...