Ds\Pair::copy
Ds\Pair::copy
(没有可用的版本信息,可能只在Git中)
Ds \ Pair :: copy - 返回该对的浅表副本。
Description
public Ds\Pair Ds\Pair::copy ( void )
返回对的浅表副本。
Parameters
该功能没有参数。
Return Values
返回对的浅表副本。
Examples
Example #1 Ds\Pair::copy() example
<?php
$a = new \Ds\Pair("a", 1
$b = $a->copy(
$a->key = "x";
print_r($a
print_r($b
?>
上面的例子会输出类似于:
Ds\Pair Object
(
[key] => x
[value] => 1
)
Ds\Pair Object
(
[key] => a
[value] => 1
)
← Ds\Pair::__construct
Ds\Pair::isEmpty →
© 1997–2017 The PHP Documentation Group
根据知识共享署名许可证v3.0或更高版本授权。