Ds\Set::join
(PECL ds >= 1.0.0)
Ds\Set::join — Joins all values together as a 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 set joined together as a string.
例
例1 Ds\Set::join() example using a separator string
<?php
$set = new \Ds\Set(["a", "b", "c", 1, 2, 3]);
var_dump($set->join("|"));
?>
上の例の出力は、 たとえば以下のようになります。
string(11) "a|b|c|1|2|3"
例2 Ds\Set::join() example without a separator string
<?php
$set = new \Ds\Set(["a", "b", "c", 1, 2, 3]);
var_dump($set->join());
?>
上の例の出力は、 たとえば以下のようになります。
string(11) "abc123"
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google