Ds\Set::join

(PECL ds >= 1.0.0)

Ds\Set::joinJoins all values together as a string

Açıklama

public Ds\Set::join ([ string $glue ] ) : string

Joins all values together as a string using an optional separator between each value.

Değiştirgeler

glue

An optional string to separate each value.

Dönen Değerler

All values of the set joined together as a string.

Örnekler

Örnek 1 Ds\Set::join() example using a separator string

<?php
$set 
= new \Ds\Set(["a""b""c"123]);

var_dump($set->join("|"));
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

string(11) "a|b|c|1|2|3"

Örnek 2 Ds\Set::join() example without a separator string

<?php
$set 
= new \Ds\Set(["a""b""c"123]);

var_dump($set->join());
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

string(11) "abc123"