Joins all values together as a string

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"123]);

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"123]);

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

以上例程的輸出類似於:

string(11) "abc123"

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *