La función Ds\Stack::push() de PHP se usa para agregar elementos al final de la pila. Que se utiliza para empujar elementos a una pila. Los elementos que se envían pueden ser de tipos de datos mixtos.
Sintaxis:
void public Ds\Stack::push ($values)
Parámetro : esta función acepta un único parámetro $valores que se utiliza para insertar en la pila.
Valor devuelto: esta función no devuelve ningún valor.
Los siguientes programas ilustran la función Ds\Stack::push() :
Programa 1 :
PHP
<?php // PHP program to illustrate the // Ds\stack::push() function // Create a Stack instance $stack = new \Ds\Stack(); // Pushing elements to Stack $stack->push("Welcome"); $stack->push("to"); $stack->push("GfG"); // Print the stack print_r($stack); ?>
Salida :
Ds\Stack Object ( [0] => GfG [1] => to [2] => Welcome )
Programa 2 :
PHP
<?php // PHP program to illustrate the // Ds\stack::push() 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 stack print_r($stack); ?>
Salida :
Ds\Stack Object ( [0] => 5.5 [1] => 10 [2] => GfG [3] => to [4] => Welcome )
Referencia : https://www.php.net/manual/en/ds-stack.push.php