(PECL ds >= 1.0.0)
Ds\Vector::copy — 返回向量的浅拷贝
此函数没有参数。
返回向量的浅拷贝。
示例 #1 Ds\Vector::copy() 示例
<?php
$a = new \Ds\Vector([1, 2, 3]);
$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 )