Source Code:
(back to article)
<?php $array = array("a" => 1, "b" => 2, "c" => 3); $flipped_array = array_flip($array); print_r($flipped_array); ?>
Result:
Report an issue