View Single Post
  #16 (permalink)  
Old 08-16-2007, 10:46 PM
raj raj is offline
D-Web Programmer
 
Join Date: Jul 2007
Posts: 89
raj is on a distinguished road
Post Info : Array Flip function

hi all,

array_flip function:

-- Exchanges all keys with their associated values in an array ( Convert all keys to value & their values to key ).



$array = array("a" => 1, "b" => 1, "c" => 2);
$array = array_flip($array);
print_r($array);


Result:
Array
(
[1] => b
[2] => c
)
Reply With Quote