La función Ds\Stack::clear() de PHP se usa para eliminar todos los elementos de una pila y borrarla. Esta función simplemente elimina todos los elementos de la pila, pero no los elimina por completo. Simplemente lo vacía.
Sintaxis :
void public Ds\Stack::clear ( void )
Parámetros : esta función no acepta ningún parámetro.
Valor devuelto: esta función no devuelve ningún valor.
Los siguientes programas ilustran la función Ds\Stack::clear() :
Programa 1:
PHP
<?php // PHP program to illustrate the // Ds\stack::clear() 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); // clear the stack $stack->clear(); // Print the stack again print_r($stack); ?>
Producción:
Ds\Stack Object ( [0] => GfG [1] => to [2] => Welcome ) Ds\Stack Object ( )
Programa 2:
PHP
<?php // PHP program to illustrate the // Ds\stack::clear() 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); // clear the stack $stack->clear(); // Print the stack again print_r($stack); ?>
Producción:
Ds\Stack Object ( [0] => 5.5 [1] => 10 [2] => GfG [3] => to [4] => Welcome ) Ds\Stack Object ( )
Referencia : http://php.net/manual/en/ds-stack.clear.php