Php Array Function Sequence: array_flip ()

Source: Internet
Author: User

Array_flip () Definition and usage

The array_flip () function changes the key name of the array to the corresponding value, that is, the key name is changed to the value, and the value is changed to the key name.

The array_flip () function returns an inverted array. If the same value appears multiple times, the last key will be used as its value, and all other key names will be lost.

If the data type of the value in the original array is not a string or integer, the function reports an error.

Syntax
Array_flip (array) parameter description
Array is required. Specifies the input array.

Example
Copy codeThe Code is as follows:
<? Php
$ A = array (0 => "Dog", 1 => "Cat", 2 => "Horse"); print_r (array_flip ($ ));
?>

Output:

Array ([Dog] => 0 [Cat] => 1 [Horse] => 2)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.