20.4 C
New York
Saturday, April 1, 2023

How to set value as key in PHP array?





Sometimes, we work on big php or other framework projects and we need to change array value as array key at that time you can learn from this post. In this example you can do that without foreach loop. For example if you have all country array but that array have key like 1,2,3,4… etc and value is country. at that time you need to make array like country as key and value both that way you can store it on database table directly.

We can do that using array_combine() of PHP array. array_combine() take two argument and both should be array. so, let’s see exmple.

Example:

$myArray = ['1'=>'US','2'=>'India','3'=>'Brazil','4'=>'Germany'];

$result = array_combine($myArray,$myArray);

print_r($result);

Output:

Array

(

[US] => US

[India] => India

[Brazil] => Brazil

[Germany] => Germany

)

Related Articles

Latest Articles