Skip to content

Instantly share code, notes, and snippets.

Created September 6, 2011 14:25
Show Gist options
  • Save anonymous/440fd951e8b46c4a64cc to your computer and use it in GitHub Desktop.
Save anonymous/440fd951e8b46c4a64cc to your computer and use it in GitHub Desktop.
<?php
$a = Array(
Array('сало', 'красное'),
Array('сало', 'зеленое'),
Array('сало', 'голубое'),
);
$b = Array();
foreach ($a as $row) {
$b[$row[0]][] = $row[1];
}
foreach ($b as &$item) {
$item = implode($item, ',');
}
var_dump($b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment