Ds \ Sequence::join()函數是PHP中的內置函數,用於將所有值作為字符串連接。
用法:
string abstract public Ds\Sequence::join ([ string $glue ] )
參數:該函數接受可選的單個參數$glue。它用於分隔序列元素。
返回值:該函數返回一個字符串。
以下示例程序旨在說明PHP中的Ds \ Sequence::join()函數:
程序1:
<?php
// Create new sequence
$seq = new \Ds\Vector(["G", "E", "E",
"K", "S", 1, 2, 3, 4]);
// Use join() function and
// display the string
var_dump($seq->join());
?>
輸出:
string(9) "GEEKS1234"
程序2:
<?php
// Create new sequence
$seq = new \Ds\Vector(["G", "E", "E",
"K", "S", 1, 2, 3, 4]);
// Use join() function and
// display the string separated
// with comma
var_dump($seq->join(", "));
// Create new sequence
$seq = new \Ds\Vector([1, 2, 3, "g", "e"]);
// Use join() function
var_dump($seq->join("|"));
?>
輸出:
string(25) "G, E, E, K, S, 1, 2, 3, 4" string(9) "1|2|3|g|e"
參考: http://php.net/manual/en/ds-sequence.join.php
相關用法
- PHP join()用法及代碼示例
- p5.js join()用法及代碼示例
- PHP Ds\Set join()用法及代碼示例
- PHP Ds\Deque join()用法及代碼示例
- Node.js join()用法及代碼示例
- PHP Ds\Vector join()用法及代碼示例
- Node.js path.join()用法及代碼示例
- PHP abs()用法及代碼示例
- PHP min( )用法及代碼示例
- PHP max( )用法及代碼示例
- PHP Ds\Set first()用法及代碼示例
- PHP Ds\Set last()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Ds\Sequence join() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。