$lastElement = end($array);
foreach ($array as $element) {
$yenistring .= $element;
if ($element !== $lastElement) {
$yenistring .= ',';
}
}