PHP 8.3.4 Released!

Ds\Sequence::join

(PECL ds >= 1.0.0)

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

Beschreibung

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

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

Parameter-Liste

glue

An optional string to separate each value.

Rückgabewerte

All values of the sequence joined together as a string.

Beispiele

Beispiel #1 Ds\Sequence::join() example using a separator string

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

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

Beispiel #2 Ds\Sequence::join() example without a separator string

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

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

string(11) "abc123"
add a note

User Contributed Notes

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