A função Ds \ Vector :: set () pode atualizar o valor em um determinado índice.
Sintaxe
public void Ds\Vector::set( int $index, mixed $value )
A função Ds \ Vector :: set () não retorna nenhum valor. Esta função pode lançar OutOfRangeException se um índice não for válido.
Exemplo 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);
?>
Exemplo 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);
?>