Guest User

Untitled

a guest
May 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. <?php
  2. function array_choice($array)
  3. {
  4. return $array[array_rand($array)];
  5. }
  6.  
  7. $array = array('Rock', 'Scissors', 'Paper');
  8. echo array_choice($array) . PHP_EOL;
Add Comment
Please, Sign In to add comment