fork download
  1. <?php
  2. $input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
  3. $rand_keys = array_rand($input, 2);
  4. echo $input[$rand_keys[0]] . "\n";
  5. echo $input[$rand_keys[1]] . "\n";
  6. ?>
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Morpheus
Trinity