這篇文章主要介紹了php中實現獲取隨機數組列表的自定義函數,本文直接給出實現代碼,需要的朋友可以參考下
貼一段代碼,在php中獲取隨機數組 不用多說,直接貼代碼,php中的array_rand很變態,突破了正常人的理解,繁瑣
- function create_random_ids( $min,$max,$limited )
- {
- $_base_ids = range($min,$max);
- $_temp_key = array_rand ($_base_ids,min(count($_base_ids),$limited+10));
- //拼接
- $ids = array();
- for ($x=0; $x < count($_temp_key); $x++) {
- $ids[] = $_base_ids[$_temp_key[$x]];
- }
- return $ids;
- }
新聞熱點
疑難解答