PHP scrambling arrays: two-dimensional arrays and multidimensional arrays

Source: Internet
Author: User
Tags foreach arrays manual shuffle

PHP Shuffle function can only disturb the one-dimensional array, what is the way to quickly and easily disrupt the multidimensional array? The manual provides

<?php   
function Shuffle_assoc ($list) {   
  if!is_array ($list)) return $list;   
  $keys = Array_keys ($list);   
  Shuffle ($keys);   
  $random = Array ();   
  foreach ($keys as $key)   
    $random [$key] = $list [$key];   
  return $random;   
>

The above is for two-dimensional arrays!

What are the following random methods for multidimensional arrays? As quick and easy as possible:

<?php   
function Shuffle_assoc ($list) {   
if!is_array ($list)) return $list;   
      
$keys = Array_keys ($list);   
Shuffle ($keys);   
$random = Array ();   
foreach ($keys as $key)   
$random [$key] = Shuffle_assoc ($list [$key]);   
      
return $random;   
>

The following functions are also derived from the PHP manual, which can disrupt multidimensional arrays:

/** 
* Shuffles an associative array recursive 
* *  
@param array $array 
@return Array 
*
      
*/ function Rec_assoc_shuffle ($array)  
{  
  $ary _keys = Array_keys ($array);  
  $ary _values = array_values ($array);  
  Shuffle ($ary _values);  
  foreach ($ary _keys as $key => $value) {  
    if (Is_array ($ary _values[$key]) and $ary _values[$key]!= NULL) {  
      $ary _values[$key] = rec_assoc_shuffle ($ary _values[$key]);  
    $new [$value] = $ary _values[$key];  
  }  
  return $new;  
}

See more highlights of this column: http://www.bianceng.cnhttp://www.bianceng.cn/webkf/PHP/

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.