CakeFest 2024: The Official CakePHP Conference

Ds\Deque::join

(PECL ds >= 1.0.0)

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

Açıklama

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

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

Bağımsız Değişkenler

glue

An optional string to separate each value.

Dönen Değerler

All values of the deque joined together as a string.

Örnekler

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

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

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

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

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

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

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

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

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

string(11) "abc123"
add a note

User Contributed Notes

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