Ds \ Set::join()函数是PHP中的内置函数,用于将所有值作为字符串连接。
用法:
string public Ds\Set::join ([ string $glue ] )
参数:该函数接受可选的单个参数$glue。它用于分隔set元素。
返回值:该函数返回一个字符串。
以下示例程序旨在说明PHP中的Ds \ Set::join()函数:
程序1:
<?php
// Create new set
$set = new \Ds\Set(["G", "E", "E",
"K", "S", 1, 2, 3, 4]);
// Use join() function and
// display the string
var_dump($set->join());
?>
输出:
string(8) "GEKS1234"
程序2:
<?php
// Create new set
$set = new \Ds\Set(["G", "E", "E",
"K", "S", 1, 2, 3, 4]);
// Use join() function and
// display the string separated
// with comma
var_dump($set->join(", "));
// Create new set
$set = new \Ds\Set([1, 2, 3, "g", "e"]);
// Use join() function
var_dump($set->join("|"));
?>
输出:
string(22) "G, E, K, S, 1, 2, 3, 4" string(9) "1|2|3|g|e"
参考: https://www.php.net/manual/en/ds-set.join.php
相关用法
- PHP join()用法及代码示例
- p5.js join()用法及代码示例
- PHP Ds\Vector join()用法及代码示例
- Node.js join()用法及代码示例
- PHP Ds\Sequence join()用法及代码示例
- PHP Ds\Deque join()用法及代码示例
- Node.js path.join()用法及代码示例
- PHP Ds\Map last()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP Ds\Set get()用法及代码示例
- PHP Ds\Map map()用法及代码示例
- p5.js abs()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | Ds\Set join() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。