数组排序

2021-06-28 02:04

阅读:562

标签:data   console   ext   .so   func   int   顺序   ret   包含   

js 

function randomsort() {
   return Math.random()>.5 ? -1 : 1;
}
var arr = [1, 2, 3, 4, 5];
console.log(arr.sort(randomsort));

 

php

array_rand(array,number)
array 必需。规定数组。
number 可选。规定返回多少随机键名。

 

 

shuffle()函数把数组中的元素按随机顺序重新排列。若成功则返回 TRUE,若失败则返回 FALSE。

注释:本函数为数组中的单元赋予新的键名。这将删除原有的键名而不仅是重新排序。

 

function unique_rand($min, $max)
{
    //  不包含最大值
    $return = array();
    for($i=$min;$i$max;$i++)
    {
        $return[] = $i;
    }
    shuffle($return);
    return $return;
}

 

 

 

 

 

 

数组排序

标签:data   console   ext   .so   func   int   顺序   ret   包含   

原文地址:https://www.cnblogs.com/xuey/p/8051659.html


评论


亲,登录后才可以留言!