Ds \ Pair::copy()函数是PHP中的一个内置函数,用于返回Pair元素的副本。
用法:
Ds\Pair Ds\Pair::copy( void )
参数:该函数不接受任何参数。
返回值:此函数返回pair元素的浅拷贝。
以下示例程序旨在说明PHP中的Ds \ Pair::copy()函数:
程序1:
<?php
// Create new Pair
$pair = new \Ds\Pair("G", "GeeksforGeeks");
// Display the pair element
print_r($pair);
// Use copy() function
$pair->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 )
程序2:
<?php
// Create new Pair
$pair = new \Ds\Pair(["G", "GeeksforGeeks"], [1, 2]);
// Display the pair element
var_dump($pair);
// Use copy() function
$pair->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
相关用法
- PHP Ds\Set copy()用法及代码示例
- PHP copy( )用法及代码示例
- PHP Ds\Map copy()用法及代码示例
- PHP Ds\PriorityQueue copy()用法及代码示例
- PHP Ds\Queue copy()用法及代码示例
- PHP Ds\Deque copy()用法及代码示例
- PHP Ds\Stack copy()用法及代码示例
- PHP Ds\Collection copy()用法及代码示例
- PHP Ds\Vector copy()用法及代码示例
- AngularJS ng-copy用法及代码示例
- Node.js Buffer.copy()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | Ds\Pair copy() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。