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