fork(2) download
  1. <?php
  2.  
  3.  
  4. $answers = array(1 => 'да', 2 => 'нет', 3 => 'не знаю', 4 => 'никогда', 5 => 'это зависит от тебя', 6 => 'спроси анона');
  5.  
  6. $question = "Выучу ли я PHP без регистрации и смс?";
  7.  
  8. $answer = $answers[mt_rand(1, count($answers))];
  9.  
  10. echo "$answer";
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
никогда