|
Ds\Sequence::removeRemoves and returns a value by index. Beschreibung
abstract public mixed Ds\Sequence::remove
( int
$index
)Removes and returns a value by index. Parameter-Liste
RückgabewerteThe value that was removed. Fehler/ExceptionsOutOfRangeException if the index is not valid. BeispieleBeispiel #1 Ds\Sequence::remove example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: string(1) "b" string(1) "a" string(1) "c" |