(PECL ds >= 1.0.0)
Ds\Sequence::push โ Adds values to the end of the sequence
Adds values to the end of the sequence.
values
The values to add.
ๅคใ่ฟใใพใใใ
ไพ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);
?>
ไธใฎไพใฎๅบๅใฏใ ใใจใใฐไปฅไธใฎใใใซใชใใพใใ
Ds\Vector Object ( [0] => a [1] => b [2] => c [3] => d [4] => e [5] => f )