PHP funkce implode()
Dostupnost ve verzích: PHP 4.0
Join array elements with a string
Parametry
| Parametr | Datový typ | Výchozí hodnota | Poznámka |
|---|---|---|---|
$glue |
string |
"", | Defaults to an empty string. This is not the preferred usage of implode as glue would be the second parameter and thus, the bad prototype would be used. |
$pieces |
array |
není | The array of strings to implode. |
Návratové hodnoty
string
a string containing a string representation of all the array elements in the same order, with the glue string between each element.