PHP | Ds\Pair copy()函数
Ds\Pair::copy()函数是PHP中的一个内置函数,用于返回 Pair 元素的副本。
句法:
Ds\Pair Ds\Pair::copy( void )
参数:此函数不接受任何参数。
返回值:此函数返回对元素的浅表副本。
下面的程序说明了PHP中的 Ds\Pair::copy()函数:
方案一:
copy();
echo "Copied pair elements:\n";
// Display the pair element
print_r($pair);
?>
输出:
Ds\Pair Object
(
[key] => G
[value] => GeeksforGeeks
)
Copied pair elements:
Ds\Pair Object
(
[key] => G
[value] => GeeksforGeeks
)
方案二:
copy();
echo "Copied pair elements:\n";
// Display the pair element
var_dump($pair);
?>
输出:
object(Ds\Pair)#1 (2) {
["key"]=>
array(2) {
[0]=>
string(1) "G"
[1]=>
string(13) "GeeksforGeeks"
}
["value"]=>
array(2) {
[0]=>
int(1)
[1]=>
int(2)
}
}
Copied pair elements:
object(Ds\Pair)#1 (2) {
["key"]=>
array(2) {
[0]=>
string(1) "G"
[1]=>
string(13) "GeeksforGeeks"
}
["value"]=>
array(2) {
[0]=>
int(1)
[1]=>
int(2)
}
}
参考: https://www. PHP.net/manual/en/ds-pair.copy。 PHP