Ds\Sequence::set

Updates a value at a given index.

Beschreibung

abstract public void Ds\Sequence::set ( int $index , mixed $value )

Updates a value at a given index.

Parameter-Liste

index

The index of the value to update.

value

The new value.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Fehler/Exceptions

OutOfRangeException if the index is not valid.

Beispiele

Beispiel #1 Ds\Sequence::set example

<?php
$sequence 
= new \Ds\Vector(["a""b""c"]);

$sequence->set(1"_");
print_r($sequence);
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Ds\Vector Object
(
    [0] => a
    [1] => _
    [2] => c
)

Beispiel #2 Ds\Sequence::set example using array syntax

<?php
$sequence 
= new \Ds\Vector(["a""b""c"]);

$sequence[1] = "_";
print_r($sequence);
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Ds\Vector Object
(
    [0] => a
    [1] => _
    [2] => c
)