PHP » GoLang |
login |
register |
about
|
GoLang Ds\Sequence::join
request it (380)
GoLang replacement for PHP's Ds\Sequence::join
[edit | history]
Ds\Sequence::join(PECL ds >= 1.0.0) Ds\Sequence::join — Joins all values together as a string Description
abstract public string Ds\Sequence::join
([ string
$glue
] )Joins all values together as a string using an optional separator between each value. Parameters
Return ValuesAll values of the sequence joined together as a string. ExamplesExample #1 Ds\Sequence::join() example using a separator string
<?php 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 The above example will output something similar to: string(11) "abc123" |
more
Recently updated
more
Most requested
more
Last requests
|