Описание тега implode
NoneImplode() is a PHP function that joins together an array (optionally based on a 'glue' (inverse delimiter)) and returning a string.
implode()
is a PHP function that joins together an array (optionally based on a 'glue' (inverse delimiter - defaults to an empty string) and returning a string.
string implode ( string $glue , array $pieces )
string implode ( array $pieces )
Example
$array = array("a", "b", "c", "d");
print_r(implode(" ", $array));
print_r(implode($array));
returns:
a b c d
abcd