September 2001
Intermediate to advanced
768 pages
32h 45m
English
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:
$fruits = array( 'a' => 'apple', 'b' => 'banana', 'c' => 'carrot', 'd' => 'dachshund'); while(list($key,$val) ... |
Read now
Unlock full access