Ds\Stack::push
(PECL ds >= 1.0.0)
Ds\Stack::push — Pushes values onto the stack.
Список параметров
-
values
-
The values to push onto the stack.
Возвращаемые значения
Эта функция не возвращает значения после выполнения.
Примеры
Пример #1 Ds\Stack::push() example
<?php
$stack = new \Ds\Stack();
$stack->push("a");
$stack->push("b");
$stack->push("c", "d");
$stack->push(...["e", "f"]);
print_r($stack);
?>
Результатом выполнения данного примера будет что-то подобное:
Ds\Stack Object ( [0] => a [1] => b [2] => c [3] => d [4] => e [5] => f )
Коментарии
If "f " is put at the last so it should be on the top of the stack not at the bottom.