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