Ds\Stack::pushPushes values onto the stack. Description
public void Ds\Stack::push
([ mixed
$...values
] )
Pushes Parameters
Return ValuesNo value is returned. ExamplesExample #1 Ds\Stack::push example
<?phpThe above example will output something similar to:
Ds\Stack Object
(
[0] => a
[1] => b
[2] => c
[3] => d
[4] => e
[5] => f
)
|