I want to invert my array, can I do this?
<?php
$values = array("Fred","Bob","George");
print_r($values);
$values = array_flip($values);
print_r($values);
?>
Which returns:
Array
(
[0] => Fred
[1] => Bob
[2] => George
)
Array
(
[Fred] => 0
[Bob] => 1
[George] => 2
)
Comment on this Question and Answer >>>
ASK A QUESTION
More arrays PHP Questions
sortHow can I mix up the order of values in an array?
How do I reverse sort an array by key?
How can I sort a multi-dimensional array?
How do I sort an array by key?
