fork(1) download
  1. <?php
  2.  
  3.  
  4. $answers = array (
  5. 1 => 'да',
  6. 2 => 'нет',
  7. 3 => 'не знаю',
  8. 4 => 'никогда',
  9. 5 => 'это зависит от тебя',
  10. 6 => 'спроси у анона'
  11. );
  12.  
  13. $question = 'выучил ли ты пхп без смс?';
  14. $random = array_rand ($answers);
  15.  
  16. $answer = $answers[$random];
  17.  
  18. echo "Вопрос: {$question}\n";
  19. echo "Ответ: {$answer}\n";
  20.  
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
Вопрос: выучил ли ты пхп без смс?
Ответ: нет