array_flip demo : array_flip « Data Structure « PHP






array_flip demo

 
<?php

$state = array("A","P","N");
$state = array_flip($state);
print_r($state);

?>
  
  








Related examples in the same category

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