note 57250 deleted from function.rand by felipe

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: Kniht 

----

RE: nick at nerdynick dot com

<?php
function rand_array( $size, $min, $max ) {
  $v = array();
  while ( count($v) < $size ) {
    do {
      $n = rand( $min, $max );
    } while ( array_search( $n, $v ) !== false );
    $v[] = $n;
  }
  return $v;
}
?>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.