Returns a shallow copy of the queue

Ds\Queue::copy

(PECL ds >= 1.0.0)

Ds\Queue::copyReturns a shallow copy of the queue

說明

public Ds\Queue::copy(): Ds\Queue

Returns a shallow copy of the queue.

參數

此函式沒有參數。

返回值

Returns a shallow copy of the queue.

範例

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

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

// Updating the copy doesn't affect the original
$b->push(4);

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

以上例程的輸出類似於:

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

發佈留言

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