Frezi2005

Untitled

Apr 5th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. function randomNumber() {
  4. $random = rand(1, 50);
  5.  
  6. if($random > 20) {
  7. while($random > 20) {
  8. $number = randomNumber();
  9. return $number;
  10. }
  11. } else {
  12. return $random;
  13. }
  14. }
  15.  
  16. echo randomNumber();
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment