當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Ds\Vector set()用法及代碼示例


Ds \ Vector::set()函數是PHP中的一個內置函數,用於在給定索引處設置向量中的值。

用法:

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

參數:該函數接受上述和以下描述的兩個參數:


  • $index:此參數保存要更新矢量值的索引值。
  • $value:此參數保存將替換先前元素的值。

返回值:該函數不返回任何值。

異常:如果索引無效,此函數將拋出OutOfRangeException。

以下示例程序旨在說明PHP中的Ds \ Vector::set()函數:

程序1:

<?php 
  
// Create new Vector 
$vect = new \Ds\Vector([1, 2, 3, 4, 5]); 
  
// Display the Vector elements 
print_r($vect); 
  
// Use set() function to set the  
// element in the vector 
$vect->set(1, 10); 
  
echo("\nVector after updating the element\n"); 
  
// Display the vector elements 
print_r($vect); 
  
?>

輸出:

Ds\Vector Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
)

Vector after updating the element
Ds\Vector Object
(
    [0] => 1
    [1] => 10
    [2] => 3
    [3] => 4
    [4] => 5
)

程序2:

<?php 
  
// Create new Vector 
$vect = new \Ds\Vector(["geeks", "of", "geeks"]); 
  
// Display the Vector elements 
print_r($vect); 
  
// Use set() function to set the  
// element in the vector 
$vect->set(1, "for"); 
  
echo("\nVector after updating the element\n"); 
  
// Display the vector elements 
print_r($vect); 
  
?>

輸出:

Ds\Vector Object
(
    [0] => geeks
    [1] => of
    [2] => geeks
)

Vector after updating the element
Ds\Vector Object
(
    [0] => geeks
    [1] => for
    [2] => geeks
)

參考: http://php.net/manual/en/ds-vector.set.php



相關用法


注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 PHP | Ds\Vector set() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。