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