首页 > 语言 > PHP > 正文

php中实现获取随机数组列表的自定义函数

2024-09-04 11:42:45
字体:
来源:转载
供稿:网友

贴一段代码,在php中获取随机数组 不用多说,直接贴代码,php中的array_rand很变态,突破了正常人的理解,繁琐。

  1. function create_random_ids( $min,$max,$limited ) 
  2.   $_base_ids = range($min,$max); 
  3.   $_temp_key = array_rand ($_base_ids,min(count($_base_ids),$limited+10)); 
  4.   //拼接 
  5.   $ids = array(); 
  6.   for ($x=0; $x < count($_temp_key); $x++) { 
  7.     $ids[] = $_base_ids[$_temp_key[$x]]; 
  8.   } 
  9.   return $ids
  10. }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表