PHP Ds \ Stack类的Ds \ Stack::copy()函数用于创建原始堆栈的浅拷贝并返回复制的堆栈。
用法:
Ds\Stack public Ds\Stack::copy ( void )
参数:该函数不接受任何参数。
返回值:此函数返回原始堆栈的浅拷贝。
以下示例程序旨在说明Ds \ Stack::copy()函数:
程序1::
<?php
// PHP program to illustarte the
// copy() function
// Create a Stack instance
$stack = new \Ds\Stack();
// Pushing elements to Stack
$stack->push("Welcome");
$stack->push("to");
$stack->push("GfG");
// Print the Copied Stack
print_r($stack->copy());
?>
输出:
Ds\Stack Object ( [0] => GfG [1] => to [2] => Welcome )
程序2::
<?php
// PHP program to illustarte the
// copy() function
// Create a Stack instance
$stack = new \Ds\Stack();
// Pushing Mixed value elements to Stack
$stack->push("Welcome");
$stack->push("to");
$stack->push("GfG");
$stack->push(10);
$stack->push(5.5);
// Print the copied stack
print_r($stack->copy());
?>
输出:
Ds\Stack Object ( [0] => 5.5 [1] => 10 [2] => GfG [3] => to [4] => Welcome )
参考:http://php.net/manual/en/ds-stack.copy.php
相关用法
- PHP copy( )用法及代码示例
- PHP Ds\Set copy()用法及代码示例
- PHP Ds\Map copy()用法及代码示例
- PHP Ds\Collection copy()用法及代码示例
- PHP Ds\Deque copy()用法及代码示例
- PHP Ds\Vector copy()用法及代码示例
- PHP Ds\PriorityQueue copy()用法及代码示例
- PHP Ds\Pair copy()用法及代码示例
- PHP Ds\Queue copy()用法及代码示例
- PHP exp()用法及代码示例
- PHP key()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP | Ds\Stack copy() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。