The "string_implode" Function
#
SyntaxArgument | Type | Description |
---|---|---|
array | array | The array to combine into a string |
[delim] | string | Optional: A repeated substring to separate combined items |
#
DescriptionCombines the contents of a 1D array into a string, optionally separated by a delimeter character (or substring).
Note that all array contents will be treated as strings. If the array contains pointers to other types of data, the pointer will be written literally rather than writing the contents of the data itself.