$b=array('151'=>'татьяна','182'=>'валя', '119'=>'татьяна','202'=>'люба','203'=>'татьяна');
$new_mass=array();
$temp=0;
foreach ($b as $value){
foreach ($b as $key=>$val){
if($value==$val){
if($temp==0){
$temp=$key;
}else{
$temp=$temp."|".$key;
}
}
}
$new_mass[$value]=$temp;
$temp=0;
}
print_r($new_mass);
-----------------------------------------------------------------------------------------
Array
(
[татьяна] => 151|119|203
[валя] => 182
[люба] => 202
)