(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.
glue
An optional string to separate each value.
All values of the sequence joined together as a string.
Example #1 Ds\Sequence::join() example using a separator string
<?php
$sequence = new \Ds\Vector(["a", "b", "c", 1, 2, 3]);
var_dump($sequence->join("|"));
?>
The above example will output something similar to:
string(11) "a|b|c|1|2|3"
Example #2 Ds\Sequence::join() example without a separator string
<?php
$sequence = new \Ds\Vector(["a", "b", "c", 1, 2, 3]);
var_dump($sequence->join());
?>
The above example will output something similar to:
string(11) "abc123"
Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!
Check out: eBank.nz (Art Generator) |
Netwrck.com (AI Tools) |
Text-Generator.io (AI API) |
BitBank.nz (Crypto AI) |
ReadingTime (Kids Reading) |
RewordGame |
BigMultiplayerChess |
WebFiddle |
How.nz |
Helix AI Assistant