|
Ds\Sequence::pushAdds values to the end of the sequence. Description
abstract public void Ds\Sequence::push
([ mixed
$...values
] )Adds values to the end of the sequence. Parameters
Return ValuesNo value is returned. ExamplesExample #1 Ds\Sequence::push example
<?phpThe above example will output something similar to:
Ds\Vector Object
(
[0] => a
[1] => b
[2] => c
[3] => d
[4] => e
[5] => f
)
|