string_implode [function]
string_implode( array items, string sep )
concatenates the string representations of array items
values, putting a string sep
between each two
string_implode( ["one","two","three"], ", " ); // string [15] "one, two, three"