php8.5
Home/ Manual/ ds / sequence/ Ds\Sequence::push

Ds\Sequence::push

PHP function Edit on GitHub ✎

(PECL ds >= 1.0.0)

Adds values to the end of the sequence

Description

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

Adds values to the end of the sequence.

Parameters

values

The values to add.

Return Values

Void

Examples

Ds\Sequence::push() example

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

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

print_r($sequence);
?>

The above example will output something similar to:

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

Source: reference/ds/ds/sequence/push.xml · from the official PHP manual (php/doc-en)