array_flip() function exchanges all key and element values for the array. : array_flip « Data Structure « PHP






array_flip() function exchanges all key and element values for the array.

 
//Its syntax is: array array_flip(array array)

<?
    $l = array("a" => "A","b" => "B","q" => "Q");
    $l = array_flip($l);
    print_r($l);
?>
  
  








Related examples in the same category

1.Using array_flip() to return a string back to its original value
2.array_flip demo
3.array_flip( ) exchanges all the keys in that array with their matching values
4.array_flip() example