PHP | Función Ds\\Stack copy()

La función Ds\Stack::copy() de la clase PHP Ds\Stack se usa para crear una copia superficial de la pila original y devuelve la pila copiada.

Sintaxis:  

Ds\Stack public Ds\Stack::copy ( void )

Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve una copia superficial de la pila original.

Los siguientes programas ilustran la función Ds\Stack::copy() :

Programa 1 :  

PHP

<?php
 
// PHP program to illustrate the
// Ds\stack::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());
 
?>

Salida

Ds\Stack Object
(
    [0] => GfG
    [1] => to
    [2] => Welcome
)

Programa 2

PHP

<?php
 
// PHP program to illustrate the
// Ds\stack::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());
 
?>

Salida

Ds\Stack Object
(
    [0] => 5.5
    [1] => 10
    [2] => GfG
    [3] => to
    [4] => Welcome
)

Referencia : http://php.net/manual/en/ds-stack.copy.php
 

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *