Guest User

Untitled

a guest
Aug 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2. $i=0;
  3. $tomb[0] = 0;
  4.  while ($i<185) {
  5.     $random = rand ( 1 , 185 );
  6.     if (in_array($random, $tomb)) {
  7.         continue;
  8.     }
  9.     echo $random . " ";
  10.     $tomb[$i] = $random;
  11.     $i++;
  12.  }
  13. ?>
Add Comment
Please, Sign In to add comment