(PECL ds >= 1.0.0)
Ds\Sequence::join β Joins all values together as a string
Joins all values together as a string using an optional separator between each value.
glueAn optional string to separate each value.
All values of the sequence joined together as a string.
ΠΡΠΈΠΊΠ»Π°Π΄ #1 Ds\Sequence::join() example using a separator string
<?php
$sequence = new \Ds\Vector(["a", "b", "c", 1, 2, 3]);
var_dump($sequence->join("|"));
?>ΠΠΎΠ΄Π°Π½ΠΈΠΉ Π²ΠΈΡΠ΅ ΠΏΡΠΈΠΊΠ»Π°Π΄ Π²ΠΈΠ²Π΅Π΄Π΅ ΡΠΎΡΡ ΡΡ ΠΎΠΆΠ΅ Π½Π°:
string(11) "a|b|c|1|2|3"
ΠΡΠΈΠΊΠ»Π°Π΄ #2 Ds\Sequence::join() example without a separator string
<?php
$sequence = new \Ds\Vector(["a", "b", "c", 1, 2, 3]);
var_dump($sequence->join());
?>ΠΠΎΠ΄Π°Π½ΠΈΠΉ Π²ΠΈΡΠ΅ ΠΏΡΠΈΠΊΠ»Π°Π΄ Π²ΠΈΠ²Π΅Π΄Π΅ ΡΠΎΡΡ ΡΡ ΠΎΠΆΠ΅ Π½Π°:
string(11) "abc123"