git config core.hooksPath .githooks
TIME values may range from '-838:59:59' to '838:59:59'. The hours part may be so large because the TIME type can be used not only to represent a time of day (which must be less than 24 hours), but also elapsed time or a time interval between two events (which may be much greater than 24 hours, or even negative)
$first = [ 'Купить', 'Заказать', 'Приобрести', 'Предлагаем купить', 'Предлагаем приобрести', 'Предлагаем заказать' ];
$second = [ 'красивую', 'элегантную', 'дизайнерскую' ];
$third = [ 'юбку', 'кофту', 'пальто' ];
$fourth = [ 'в каталоге', 'в интернет-магазине', 'на сайте' ];
$out = [];
foreach ($third as $item) {
$set = [];
$set[] = array_rand($first);
$set[] = array_rand($second);
$set[] = $item;
$set[] = array_rand($fourth);
$out[] = implode(' ', $set);
}
echo implode(PHP_EOL, $out);