Returns a shallow copy of the collection

Ds\Collection::copy

(PECL ds >= 1.0.0)

Ds\Collection::copyReturns a shallow copy of the collection

說明

abstract public Ds\Collection::copy(): Ds\Collection

Returns a shallow copy of the collection.

參數

此函式沒有參數。

返回值

Returns a shallow copy of the collection.

範例

示例 #1 Ds\Collection::copy() example

<?php
$a 
= new \Ds\Vector([123]);
$b $a->copy();

$b->push(4);

print_r($a);
print_r($b);
?>

以上例程的輸出類似於:

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

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *