fork download
  1. <?php
  2.  
  3.  
  4. $answers = array(
  5. 1 => 'да',
  6. 1 => 'нет',
  7. 1 => 'возможно',
  8. 1 => 'забудь об этом',
  9. 1 => 'спроси еще раз',
  10. 1 => 'не смешно',
  11. 1 => 'сто процентов',
  12. );
  13.  
  14. $question = "Стану ли я программистом от бога?";
  15. $random = mt_rand(1,7);
  16. $answer = $answers($random);
  17.  
  18. echo "Вопрос ($question)\n";
  19. echo "Ответ ($answer)\n";
Runtime error #stdin #stdout #stderr 0.01s 20568KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Fatal error:  Function name must be a string in /home/QQlW7n/prog.php on line 17