下面写几种生成不重复随机数的方法,直接上代码吧
复制代码 代码如下:
<?php
define(‘random_max’, 100);
define(‘count’, 10);
echo 经典人生格言216;max random num: ‘.random_max, ‘ ;result count:’.count, ‘<br/>’;
invoke_entry(‘rand1’);
invoke_entry(‘rand2’);
invoke_entry(‘rand3’);
invoke_entry(‘rand4’孤独的质数);
function invoke_entry($func_name) {
$time = new time();
$time->time_start();
call_ur_func($func_name);
echo $func_name.’ time spend: ‘, $time->time_spend();
echo ‘<br/>’;
}
function rand1() {
$numbers = range (1, random_max);
shuffle($numbers);//随机打乱数组
$result = array_slice($numbers, 1, count);
return $result;
}
function rand2() {
$result = array();
while(count($result)< count) {
$result[] = mt_rand(1, random_max);//mt_rand()是比rand嫂嫂我来爱()更好更快的随机函数
$result = array_unique($result); //删除数组中重复的元素
}
return $result;
}
function rand3() {
$result = array();
while(count($result) < count) {
$_tmp补习班和辅导班 = mt_rand(1, random_max);
if(!in_array($_tmp, $result)) {//当数组中不存在相同的元素时,才允许插入
$result[] = $_tmp;
}
}
return $result;
}
function rand4() {
$result = array();
while (count($result) < count) {
$result[] = mt_rand(1, random_max);
$result = array_flip(array_flip($result));//array_flip将数组的key和value交换
}
return $result;
}
class time {
private $_start;
public function time_start() {
$this->_st日本书道art = $this->microtime_float();
}
public function time_spend() {
return $this->microtime_float() – $this->_start;
}
private function microtime_float() {
list($uc, $c) = explode(” “, microtime());
return ((float)$uc + (float)$c);
}
}
?>
说一下第四种方法,就是翻翻法了,利用array_flip()将数组的键和值翻转,利用php数组特性,重复的键会覆盖,此时再翻转一次,就相同于去掉了重复的值。
以上几种方法只是简单的例子,有的方法适用范围有限。
在看看几种方法的效率:
用array_unique()在数组较大时性能比较差,当然shuffle()也会受此影响。
本文发布于:2023-04-06 19:19:31,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/d665ba85f4085ea314a0fe8041522b24.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php生成不重复随机数、数组的4种方法分享.doc
本文 PDF 下载地址:php生成不重复随机数、数组的4种方法分享.pdf
留言与评论(共有 0 条评论) |