fork(2) download
  1. <?php
  2.  
  3. $answers = array (
  4. 1=>'Да',
  5. 2=>'Нет',
  6. 3=>'Спок, бро',
  7. 4=>'Не уверен',
  8. 5=>'Сам решай',
  9. 6=>'Инфа 100%',
  10. 7=>'Не понял'
  11. );
  12.  
  13. $question = 'Сегодня у меня будет секс?';
  14.  
  15. $answer = $answers[mt_rand(1,count($answers))];
  16.  
  17. echo "Вопрос: {$question}\nОтвет: {$answer}";
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
Вопрос: Сегодня у меня будет секс?
Ответ: Нет