Dutch PHP Conference 2025 - Call For Papers

Ds\Vector::join

(PECL ds >= 1.0.0)

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

Опис

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

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

Параметри

glue

An optional string to separate each value.

Значення, що повертаються

All values of the vector joined together as a string.

Приклади

Приклад #1 Ds\Vector::join() example using a separator string

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

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

Поданий вище приклад виведе щось схоже на:

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

Приклад #2 Ds\Vector::join() example without a separator string

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

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

Поданий вище приклад виведе щось схоже на:

string(11) "abc123"
add a note

User Contributed Notes

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