http://php.net/manual/it/function.implode.php

codice:
$array = array('carne', 'pasta');
$str = implode(', ', $array);

echo $str; // carne, pasta