|
Ds\Deque::joinJoins all values together as a string. Description
public string Ds\Deque::join
([ string
$glue
] )Joins all values together as a string using an optional separator between each value. Parameters
Return ValuesAll values of the deque joined together as a string. ExamplesExample #1 Ds\Deque::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\Deque::join example without a separator string
<?php The above example will output something similar to: string(11) "abc123" |