array_flip

array array_flip(array values) 

Transposes the keys and values of an array.

Returns:

Associative array; FALSE if given an invalid argument

Description:

array_flip() converts the keys of an array into values and the values into keys, in effect transposing the keys and values of the array. This works for both indexed arrays and associative arrays.

If values contains multiple elements with the same value—which would cause the resulting array to have multiple identical keys—only the value of the last of these duplicates is used, and previous elements are lost.

Version:

PHP 4 since 4.0b4

Example:

Transpose the keys and values of an array
 $fruits = array( 'a' => 'apple', 'b' => 'banana', 'c' => 'carrot', 'd' => 'dachshund'); while(list($key,$val) ...

Get PHP Functions Essential Reference now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.