在线文档教程
PHP
数据结构 | Data Structures

Ds\Set::copy

Ds\Set::copy

(PECL ds >= 1.0.0)

Ds \ Set :: copy - 返回集合的浅表副本。

描述

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

返回集合的浅表副本。

参数

该功能没有参数。

返回值

返回集合的浅表副本。

示例

示例#1 Ds \ Set :: copy()示例

<?php $a = new \Ds\Set([1, 2, 3] $b = $a->copy( // Updating the copy doesn't affect the original $b->add(4 print_r($a print_r($b ?>

上面的例子会输出如下信息:

Ds\Set Object ( [0] => 1 [1] => 2 [2] => 3 ) Ds\Set Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 )

← Ds\Set::contains

Ds\Set::count →