<?php
 
$items = array('пальто','носки','шапки');
$colors = array('красные','чёрные','белые');
$materials = array('кожа','мех','питух');
$all = array($items, $colors, $materials);

$used = array();

while (count($used) < count($items) * count($colors) * count($materials)) {
  $item = rand(0, count($items) - 1);
  $color = rand(0, count($colors) - 1);
  $material = rand(0, count($materials) - 1);
  $triada = array($item, $color, $material);

  if (in_array($triada, $used)) continue;
  $used[] = $triada;

  $names = array_map(function($value, $key) {return $value[$key];}, $all, $triada);
  echo implode(', сука, ', $names) . ', бля!' . PHP_EOL;
}