Ds\Vector::set

(PECL ds >= 1.0.0)

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

설명

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

Updates a value at a given index.

인수

index

The index of the value to update.

value

The new value.

반환값

값을 반환하지 않습니다.

오류/예외

OutOfRangeException if the index is not valid.

예제

Example #1 Ds\Vector::set() example

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

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

위 예제의 출력 예시:

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

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

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

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

위 예제의 출력 예시:

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

User Contributed Notes

There are no user contributed notes for this page.
To Top