View Problem

Join the elements of a list, separated by commas

Given the list [Apple, Banana, Carrot] produce "Apple, Banana, Carrot"
ExpandDiskEdit
php
$string = implode(", ", $fruits);

Submit a new solution for php
There are 28 other solutions in additional languages (clojure, cpp, csharp, erlang ...)