array_flip() example : array_flip « Data Structure « PHP






array_flip() example

 
<?
$trans = array(1, "hello", 1, "world", "hello");
$trans = array_flip ($trans);
$original = strtr ($str, $trans);
?>
  
  








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() function exchanges all key and element values for the array.