Returns a shallow copy of the vector

Ds\Vector::copy

(PECL ds >= 1.0.0)

Ds\Vector::copyReturns a shallow copy of the vector

說明

public Ds\Vector::copy(): Ds\Vector

Returns a shallow copy of the vector.

參數

此函式沒有參數。

返回值

Returns a shallow copy of the vector.

範例

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

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

// Updating the copy doesn't affect the original
$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
)

發佈留言

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