|
Ds\Set::joinJoins all values together as a string. Beschreibung
public string Ds\Set::join
([ string
$glue
] )Joins all values together as a string using an optional separator between each value. Parameter-Liste
RückgabewerteAll values of the set joined together as a string. BeispieleBeispiel #1 Ds\Set::join example using a separator string
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: string(11) "a|b|c|1|2|3" Beispiel #2 Ds\Set::join example without a separator string
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: string(11) "abc123" |