Answers for "convert valuye to key and key to value aaray php"

PHP
1

convert key to value php

<?php
$input = array("oranges", "apples", "pears");
$flipped = array_flip($input);
print_r($flipped);
?>
  
// output
Array (
    [oranges] => 0
    [apples] => 1
    [pears] => 2
)
Posted by: Guest on March-12-2021

Code answers related to "convert valuye to key and key to value aaray php"

Browse Popular Code Answers by Language