<?php

error_reporting(-1);

$word1 = array('Чудесных', 'Суровых', 'Занятных', 'Внезапных');
$word2 = array('слов', 'зим', 'глаз', 'дней', 'лет', 'мир', 'взор');
$word3 = array('прикосновений', 'поползновений', 'судьбы явлений',
 'сухие листья', 'морщины смерти', 'долины края', 'замены нету', 
'сухая юность', 'навек исчезнув');
$word4 = array('обретаю', 'понимаю', 'начертаю', 'закрываю', 'оставляю',
 'вынимаю', 'умираю', 'замерзаю', 'выделяю');
$word5 = array('очертания', 'безысходность', 'начертанья', 'смысл жизни',
 'вирус смерти', 'радость мира');
 
//Первая строка
 $str1_p1_rand = mt_rand(1, 4);
 $str1_p1 = $word1[$str1_p1_rand];
 
 $str2_p1_rand = mt_rand(1, 6);
 $str2_p1 = $word2[$str2_p1_rand];
 
 $str3_p1_rand = mt_rand(1, 8);
 $str3_p1 = $word3[$str3_p1_rand];

$strr1 = $str1_p1.' '.$str2_p1.' '.$str3_p1;
echo "{$strr1}\n";

//Вторая строка
 $str1_p2_rand = mt_rand(1, 3);
 $str1_p2 = $word1[$str1_p2_rand];
 
 $str2_p2_rand = mt_rand(1, 6);
 $str2_p2 = $word2[$str2_p2_rand];
 
 $str3_p2_rand = mt_rand(1, 8);
 $str3_p2 = $word3[$str3_p2_rand];
$strr2 = $str1_p2.' '.$str2_p2.' '.$str3_p2;
echo "{$strr2}\n";

//Третья строка
 $str4_rand = mt_rand(1, 8);
 $str4 = $word4[$str4_rand];
 
 $str5_rand = mt_rand(1, 5);
 $str5 = $word5[$str4_rand];
$strr3 = Я.' '.$str4.' '.$str5;
echo "{$strr3}\n";