Php empty array random insert

Source: Internet
Author: User
Php empty array randomly inserts this post and is finally edited by mahuatengBC from 2012-12-1712: 50: 13. suppose there is an empty array of 1000 elements, now we want to randomly insert 5 first prizes, randomly insert 10 second prizes, and randomly insert 20 third prizes. The rest are not winning. that is to say, these one thousand elements must have 5 First Prizes & nbsp; 10 Second Prizes & nbsp; 20 third prizes & php empty array random insertion

This post was last edited by mahuatengBC at 12:50:13, January 17 ,.

Example

Suppose there is an empty array of 1000 elements. now we want to randomly insert 5 first prizes, randomly insert 10 second prizes, and randomly insert 20 third prizes. The rest are not winning.

That is to say, these one thousand elements must have 5 first prizes, 10 second prizes, 20 third prizes, and others not winning.

How can this problem be achieved?


------ Solution --------------------
$ Ar = array_merge (array_fill (0, 5, 1), array_fill (0, 10, 2), array_fill (0, 20, 3), array_fill (0,965, 0 ));
Shuffle ($ ar );

$ Ar is the array you need

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.