NAME
implode - implode a string
SYNOPSIS
string implode(string *arr, string separator)
DESCRIPTION
Return a string, consisting of all string elements of the array arr
concatenated, separated by the string separator.
ERRORS
If the resulting string would be too long, an error will result.
The argument array may contain only string values.