A function Array_fill_keys () that populates the array with the key value given by PHP for the specified key name

Source: Internet
Author: User

Instance

Fills the array with the key value of the given key name:

<?php$keys=array ("A", "B", "C", "D"), $a 1=array_fill_keys ($keys, "Blue");p Rint_r ($a 1);? >

Definition and usage

The Array_fill_keys () function fills an array with the key value given by the specified key name.

Grammar

Array_fill_keys (Keys,value);
Parameters Describe
Keys Necessary. Array whose values will be used to populate the array's key names.
Value Necessary. Specifies the key value used to populate the array.

Technical details

return value: Returns an array of fills.
PHP version: 5.2+

Instance:

<?php$keys = Array (' foo ', 5, ten, ' Bar '), $a = Array_fill_keys ($keys, ' banana ');p rint_r ($a);? >

The results of the operation are as follows:

Array (    [foo] = Banana    [5] = Banana    [ten] = Banana    [bar] = banana)

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.