Ds\Set::join

(PECL ds >= 1.0.0)

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

Description

public Ds\Set::join(string $glue = ?): string

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

Liste de paramètres

glue

An optional string to separate each value.

Valeurs de retour

All values of the set joined together as a string.

Exemples

Exemple #1 Ds\Set::join() example using a separator string

<?php
$set
= new \Ds\Set(["a", "b", "c", 1, 2, 3]);

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

Résultat de l'exemple ci-dessus est similaire à :

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

Exemple #2 Ds\Set::join() example without a separator string

<?php
$set
= new \Ds\Set(["a", "b", "c", 1, 2, 3]);

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

Résultat de l'exemple ci-dessus est similaire à :

string(11) "abc123"
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top