PHP » GoLang |
login |
register |
about
|
GoLang Ds\Sequence::insert
request it (657)
GoLang replacement for PHP's Ds\Sequence::insert
[edit | history]
Ds\Sequence::insert(PECL ds >= 1.0.0) Ds\Sequence::insert — Inserts values at a given index DescriptionInserts values into the sequence at a given index. Parameters
Return ValuesNo value is returned. Errors/ExceptionsOutOfRangeException if the index is not valid. ExamplesExample #1 Ds\Sequence::insert() example
<?phpThe above example will output something similar to:
object(Ds\Vector)#1 (7) {
[0]=>
string(1) "a"
[1]=>
string(1) "b"
[2]=>
string(1) "c"
[3]=>
string(1) "d"
[4]=>
string(1) "e"
[5]=>
string(1) "f"
[6]=>
string(1) "g"
}
|
more
Most requested
more
Last requests
|