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


PHP Ds\Collection copy()用法及代码示例


Ds \ Collection::copy()函数是PHP中的一个内置函数,用于返回collection元素的副本。

用法:

Ds\Collection::copy ( void ):Ds\Collection

参数:该函数不接受任何参数。


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

以下示例程序旨在说明PHP中的Ds \ Collection::copy()函数:

范例1:

<?php 
  
// Create a collection 
$collection = new \Ds\Vector([10, 15, 21, 13, 16, 18]); 
  
// Display the collection element 
print_r($collection); 
  
// Use copy() function to remove elements 
$collection->copy(); 
  
// Display the collection element 
print_r($collection); 
  
?>

输出:

Ds\Vector Object ( 
    [0] => 10 
    [1] => 15 
    [2] => 21 
    [3] => 13 
    [4] => 16 
    [5] => 18 
) 
Ds\Vector Object ( 
    [0] => 10 
    [1] => 15 
    [2] => 21 
    [3] => 13 
    [4] => 16 
    [5] => 18 
) 

范例2:

<?php 
  
// Create a collection 
$collection = new \Ds\Vector([10, 15, 21, 13, 16, 18]); 
  
// Display the collection element 
print_r($collection); 
  
// Use copy() function to remove elements 
$collection->copy(); 
  
// Pop an element from collection 
$collection->pop(); 
  
// Display the collection element 
print_r($collection); 
  
?>

输出:

Ds\Vector Object ( 
    [0] => 10 
    [1] => 15 
    [2] => 21 
    [3] => 13 
    [4] => 16 
    [5] => 18 
) 
Ds\Vector Object ( 
    [0] => 10 
    [1] => 15 
    [2] => 21 
    [3] => 13 
    [4] => 16 
) 

参考: http://php.net/manual/en/ds-collection.copy.php



相关用法


注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | Ds\Collection copy() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。