If "f " is put at the last so it should be on the top of the stack not at the bottom.
(PECL ds >= 1.0.0)
Ds\Stack::push — Добавляет значения в стек
values
Добавляемые значения.
Функция не возвращает значения после выполнения.
Пример #1 Пример использования Ds\Stack::push()
<?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.