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


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


Ds \ Set::copy()函數是PHP中的一個內置函數,用於返回set元素的副本。

用法:

Ds\Set public Ds\Set::copy( void )

參數:該函數不包含任何參數。


返回值:它返回set元素的副本。

以下示例程序旨在說明PHP中的Ds \ Set::copy()函數:

程序1:

<?php  
  
// Create new Set  
$set = new \Ds\Set([10, 15, 21, 13, 16, 18]);  
  
// Display the Set element  
print_r($set);  
  
// Use copy() function 
$set->copy();  
  
// Display the Set element  
print_r($set);  
  
?> 
輸出:
Ds\Set Object
(
    [0] => 10
    [1] => 15
    [2] => 21
    [3] => 13
    [4] => 16
    [5] => 18
)
Ds\Set Object
(
    [0] => 10
    [1] => 15
    [2] => 21
    [3] => 13
    [4] => 16
    [5] => 18
)

程序2:

<?php  
  
// Create new Set  
$set = new \Ds\Set(["Geeks", "GFG", "ABC"]);  
  
// Display the Set element  
print_r($set);  
    
// Use copy() function 
$set->copy();  
    
// Display the Set element  
print_r($set);  
    
?> 
輸出:
Ds\Set Object
(
    [0] => Geeks
    [1] => GFG
    [2] => ABC
)
Ds\Set Object
(
    [0] => Geeks
    [1] => GFG
    [2] => ABC
)

參考: http://php.net/manual/en/ds-set.copy.php



相關用法


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