|
implodeJoin array elements with a string Description
string implode(string
$separator , array $array )Alternative signature (not supported with named arguments): string implode(array
$array )Legacy signature (deprecated as of PHP 7.4.0, removed as of PHP 8.0.0): string implode(array
$array , string $separator )
Join array elements with a Parameters
Return ValuesReturns a string containing a string representation of all the array elements in the same order, with the separator string between each element. Changelog
Examples
Example #1 implode example
Notes
See Also
|