PHP 8.3.4 Released!

Ds\Sequence::push

(PECL ds >= 1.0.0)

Ds\Sequence::pushAdds values to the end of the sequence

Beschreibung

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

Adds values to the end of the sequence.

Parameter-Liste

values

The values to add.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 Ds\Sequence::push() example

<?php
$sequence
= new \Ds\Vector();

$sequence->push("a");
$sequence->push("b");
$sequence->push("c", "d");
$sequence->push(...["e", "f"]);

print_r($sequence);
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

User Contributed Notes

There are no user contributed notes for this page.
To Top