How to convert array values to lowercase in PHP?

How to convert array values to lowercase in PHP?

In this post we will give you information about How to convert array values to lowercase in PHP?. Hear we will give you detail about How to convert array values to lowercase in PHP?And how to use it also give you demo for it if it is necessary.

Whenever you require to create all array value in lowercase then you can create that without using loop. you have to just use array_map(), array_map function take two argument one for php function “strtolower” and second one for array. May be we need to do this when we are working on big projects and need to all values in small case.

So, how to convert array values to lowercase using array_map(), see bellow example and learn how to work.

Example:

$myArray = ['1'=>'Hey','2'=>'Hello','3'=>'Hi','4'=>'GM'];

$result = array_map('strtolower',$myArray);

print_r($result);

Output:

Array

(

[1] => hey

[2] => hello

[3] => hi

[4] => gm

)

Hope this code and post will helped you for implement How to convert array values to lowercase in PHP?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

9  +  1  =  

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US