|
Ds\Sequence::removeRemoves and returns a value by index. Description
abstract public mixed Ds\Sequence::remove
( int
$index
)Removes and returns a value by index. Parameters
Return ValuesThe value that was removed. Errors/ExceptionsOutOfRangeException if the index is not valid. ExamplesExample #1 Ds\Sequence::remove example
<?php The above example will output something similar to: string(1) "b" string(1) "a" string(1) "c" |