Php/docs/ds-vector.join

提供:Dev Guides
< Php
2020年12月14日 (月) 12:14時点におけるNotes (トーク | 投稿記録)による版 (autoload)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

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"