I need to concatenate an indeterminate number of strings, and I would like a space in between two adjoining strings. Like so a b c d e f.
a b c d e f
Also I do not want
You mean $str = implode(' ', array('a', 'b', 'c', 'd', 'e', 'f'));?
$str = implode(' ', array('a', 'b', 'c', 'd', 'e', 'f'));