Cosmic wonder php Array function sequence Array_combine-array merge function usage description

Source: Internet
Author: User
Array_combine () Definition and usage
The Array_combine () function creates a new array by merging two arrays, one of which is the key name and the value of the other array is the key value.
If one of the arrays is empty, or if the number of elements in the two array is different, the function returns FALSE.
Grammar
Array_combine (Array1,array2)
Parameter description
Array1 required. Specifies the key name.
Array2 required. Specified value.
Hints and Notes
Note: Two parameters must have the same number of elements.
Example

Copy the Code code as follows:


$a 1=array ("a", "B", "C", "D");
$a 2=array ("Cat", "Dog", "Horse", "Cow");
Print_r (Array_combine ($a 1, $a 2));
?>


Output:
Array ([A] = Cat [b] = Dog [c] = Horse [d] = Cow)

The above describes the Cosmic Wonder php array function sequence Array_combine-array merge function instructions, including the cosmic wonder aspect of the content, I hope to be interested in PHP tutorial friends helpful.

  • 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.