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


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


Ds \ Vector::insert()函數是PHP中的一個內置函數,用於將元素插入給定索引的向量中。

用法:

void public Ds\Vector::insert( $index, $values )

參數:該函數接受上麵提到並在下麵描述的兩個參數:


  • $index:此參數保存要插入元素的索引。
  • $value:此參數保存要插入的值。

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

異常:如果索引無效,則此函數返回OutOfRangeException。

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

程序1:

<?php 
  
// Declare new vector 
$vector = new \Ds\Vector([1, 2, 4, 5]); 
  
// Display the Vector element 
print_r($vector); 
  
// Use insert() function to add  
// element in the vector 
$vector->insert(2, 3); 
  
// Display the vector element 
print_r($vector); 
  
?>

輸出:

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

程序2:

<?php 
  
// Declare new vector 
$vector = new \Ds\Vector(["geeks", "for", "geeks"]); 
  
// Display the Vector element 
print_r($vector); 
  
// Use insert() function to add  
// element in the vector 
$vector->insert(1, "practice"); 
  
// Display the vector element 
print_r($vector); 
  
?>

輸出:

Ds\Vector Object
(
    [0] => geeks
    [1] => for
    [2] => geeks
)
Ds\Vector Object
(
    [0] => geeks
    [1] => practice
    [2] => for
    [3] => geeks
)

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



相關用法


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