當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Ds\Set join()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | Ds\Set join() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。