fork(1) download
  1. <?php
  2.  
  3.  
  4. $word1 = array('Чудесных', 'Суровых', 'Занятных', 'Внезапных');
  5. $word2 = array('слов', 'зим', 'глаз', 'дней', 'лет', 'мир', 'взор');
  6. $word3 = array('прикосновений', 'поползновений', 'судьбы явлений',
  7. 'сухие листья', 'морщины смерти', 'долины края', 'замены нету',
  8. 'сухая юность', 'навек исчезнув');
  9. $word4 = array('обретаю', 'понимаю', 'начертаю', 'закрываю', 'оставляю',
  10. 'вынимаю', 'умираю', 'замерзаю', 'выделяю');
  11. $word5 = array('очертания', 'безысходность', 'начертанья', 'смысл жизни',
  12. 'вирус смерти', 'радость мира');
  13.  
  14. $sum = '';
  15.  
  16. for ($i = 1; $i <= 4; $i++) {
  17. $random1 = mt_rand(1, count($word1));
  18. $random2 = mt_rand(1, count($word2));
  19. $random3 = mt_rand(1, count($word3));
  20. $random4 = mt_rand(1, count($word4));
  21. $random5 = mt_rand(1, count($word5));
  22.  
  23. $random11 = mt_rand(1, count($word1));
  24. $random22 = mt_rand(1, count($word2));
  25. $random33 = mt_rand(1, count($word3));
  26.  
  27. $str1 = $word1[$random1];
  28. $str2 = $word2[$random2];
  29. $str3 = $word3[$random3];
  30. $str11 = $word1[$random11];
  31. $str22 = $word2[$random22];
  32. $str33 = $word3[$random33];
  33. $str4 = $word4[$random4];
  34. $str5 = $word5[$random5];
  35.  
  36.  
  37. }
  38.  
  39. echo "{$str1} {$str2} {$str3}\n";
  40. echo "{$str11} {$str22} {$str33}\n";
  41. echo {$str4} {$str5}\n";
Success #stdin #stdout #stderr 0.03s 52480KB
stdin
Standard input is empty
stdout
Внезапных дней сухие листья
Занятных мир долины края
Я  
stderr
PHP Notice:  Undefined offset: 4 in /home/CE4cFW/prog.php on line 28
PHP Notice:  Undefined offset: 6 in /home/CE4cFW/prog.php on line 35
PHP Notice:  Undefined offset: 9 in /home/CE4cFW/prog.php on line 33
PHP Notice:  Undefined offset: 9 in /home/CE4cFW/prog.php on line 30
PHP Notice:  Undefined offset: 9 in /home/CE4cFW/prog.php on line 34
PHP Notice:  Undefined offset: 6 in /home/CE4cFW/prog.php on line 35