fork(1) download
  1. <?php
  2. $friends=array("Mike", "Ondrej", "Honza", "Danca", "Misa", "Verca");
  3. array_push($friends, "Michal", "Vendulka", "Daniela");
  4. // Sort the list
  5. sort($friends);
  6. // Randomly select a winner!
  7. $winner = strtoupper($friends[array_rand($friends, 1)]);
  8. // Print the winner's name in ALL CAPS
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Standard output is empty