Ds\Vector::set

(PECL ds >= 1.0.0)

Ds\Vector::setUpdates a value at a given index

Beschreibung

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

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\Vector::set() example

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

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

Beispiel #2 Ds\Vector::set() example using array syntax

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

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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