fork(1) download
  1. <?php
  2.  
  3.  
  4. $answers = [
  5. 1 => 'да',
  6. 2 => 'нет',
  7. 3 => 'не знаю',
  8. 4 => 'никогда',
  9. 5 => 'это зависит от тебя',
  10. 6 => 'спроси анона',
  11. ];
  12.  
  13. foreach ($answers as $number => $ask) {
  14.  
  15. $question = 'Выучу ли я PHP без регистрации и СМС';
  16. $random = array_rand($answers);
  17. $answers = $ask;
  18. }
  19.  
  20. echo "Вопрос: $question\n";
  21. echo "Ответ: $answers.\n";
  22.  
  23.  
Success #stdin #stdout #stderr 0s 82880KB
stdin
Standard input is empty
stdout
Вопрос: Выучу ли я PHP без регистрации и СМС
Ответ: спроси анона.
stderr
PHP Warning:  array_rand() expects parameter 1 to be array, string given in /home/RdRyG7/prog.php on line 17
PHP Warning:  array_rand() expects parameter 1 to be array, string given in /home/RdRyG7/prog.php on line 17
PHP Warning:  array_rand() expects parameter 1 to be array, string given in /home/RdRyG7/prog.php on line 17
PHP Warning:  array_rand() expects parameter 1 to be array, string given in /home/RdRyG7/prog.php on line 17
PHP Warning:  array_rand() expects parameter 1 to be array, string given in /home/RdRyG7/prog.php on line 17