PHP 8.5.0 Beta 2 available for testing

Ds\Stack::push

(PECL ds >= 1.0.0)

Ds\Stack::pushPushes values onto the stack

Description

public Ds\Stack::push(mixed ...$values): void

Pushes values onto the stack.

Parameters

values

The values to push onto the stack.

Return Values

No value is returned.

Examples

Example #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);
?>

The above example will output something similar to:

Ds\Stack Object
(
 [0] => a
 [1] => b
 [2] => c
 [3] => d
 [4] => e
 [5] => f
)

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes

There are no user contributed notes for this page.

AltStyle によって変換されたページ (->オリジナル) /