PHP - Funzione Ds Vector set ()
La funzione Ds \ Vector :: set () può aggiornare il valore a un dato indice.
Sintassi
public void Ds\Vector::set( int $index, mixed $value )
La funzione Ds \ Vector :: set () non restituisce alcun valore. Questa funzione può generare OutOfRangeException se un indice non è valido.
Esempio 1
<?php
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
print_r($vector);
$vector->set(1, 10);
echo("\n The vector after updating an element: \n");
print_r($vector);
?>
Esempio 2
<?php
$vector = new \Ds\Vector(["Tutorials", "Point", "Tutorix"]);
print_r($vector);
$vector->set(1, "India");
echo("\n The vector after updating an element: \n");
print_r($vector);
?>