Php-based random array merging and sorting (original sorting)

Source: Internet
Author: User
Recently, A project was created. to implement such A requirement, the original post list A now needs to promote the new Business B in A, so the data in the hybrid B in List A needs to be included, random mixing, but the original data sorting of columns A and B needs to be maintained. This article introduces A recent project based on ph, which has such A requirement to be implemented, the original post List A, now needs to promote new business B in A, then the data in the hybrid B in List A needs to be randomly mixed, however, you need to keep the original data sorting of columns A and B. for details, see the following.

Principle

The total number of elements N is obtained;
For loop N times, random number;
The values of A and B are obtained from the beginning according to the random number and pushed into the new array;

Code:

// Randomly merge two array elements to keep the original data sorting unchanged (that is, the elements of each array are sorted in the merged array consistent with their original) function shuffleMergeArray () {$ mergeArray = array (); $ sum = count ($ array1) + count ($ array2); for ($ k = $ sum; $ k> 0; $ k --) {$ number = mt_rand (1, 2); if ($ number = 1) {$ mergeArray [] = $ array2? Array_shift ($ array2): array_shift ($ array1);} else {$ mergeArray [] = $ array1? Array_shift ($ array1): array_shift ($ array2) ;}return $ mergeArray ;}

Example:

Array before merging:

$array1 = array(1, 2, 3, 4);$array2 = array('a', 'b', 'c', 'd', 'e');

Merged data:

$mergeArray = array ( 0 => 'a', 1 => 1, 2 => 'b', 3 => 2, 4 => 'c', 5 => 'd', 6 => 3, 7 => 4, 8 => 'e',)

Php random array sorting

<? Php $ array = array ('A', '2', '3', '4', '5', '6', '7', '8 ', '9', '10', 'J', 'Q', 'k'); shuffle ($ array); // random sorting array print_r ($ array ); // output array?>

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.