当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。