Ds \ Stack :: copy()PHP Ds \ Stack类的函数用于创建原始堆栈的浅表副本, 并返回复制的堆栈。
语法如下:
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