Home > Backend Development > PHP Tutorial > Implement a custom function to obtain a random array list in php, php array_PHP tutorial

Implement a custom function to obtain a random array list in php, php array_PHP tutorial

WBOY
Release: 2016-07-13 09:58:09
Original
863 people have browsed it

Implement a custom function to get a random array list in php, php array

Paste a piece of code, get a random array in php Needless to say, just paste the code directly, in php array_rand is very perverted, beyond normal people’s understanding, and cumbersome

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;
}
Copy after login

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/978387.htmlTechArticle Implement a custom function to obtain a random array list in php. Paste a piece of code on the php array to obtain a random array in php. Needless to say, just post the code directly. array_rand in php is very abnormal, a breakthrough...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template