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


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


Ds \ Sequence::insert()函數是PHP中的內置函數,用於在給定索引處的序列中插入值。

用法:

void abstract public Ds\Sequence::insert ( int $index [, mixed $...values ] )

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


  • $index:此參數保存元素插入位置的索引值。其值介於0 <= $index <= count之間。其中count表示序列中元素的數量。
  • $values:此參數保存要插入的值。

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

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

程序1:

<?php 
  
// Create new sequence 
$seq = new \Ds\Vector(); 
  
// Use insert() function 
$seq->insert(0, "g"); 
  
// Use insert() function 
$seq->insert(1, "e"); 
  
// Use insert() function 
$seq->insert(2, "e"); 
  
// Use insert() function 
$seq->insert(3, "k"); 
  
// Use insert() function 
$seq->insert(4, "s"); 
  
// Use insert() function 
$seq->insert(5, 4); 
  
var_dump($seq); 
  
?>

輸出:

object(Ds\Vector)#1 (6) {
  [0] => string(1) "g"
  [1] => string(1) "e"
  [2] => string(1) "e"
  [3] => string(1) "k"
  [4] => string(1) "s"
  [5] => int(4)
}

程序2:

<?php 
  
// Create new sequence 
$seq = new \Ds\Vector(); 
  
// Use insert() function to insert 
// element in the sequence 
$seq->insert(0, 1, 2, 3, 4, 5,  
    ["g", "e", "e", "k", 1, 2]); 
  
var_dump($seq); 
  
?>

輸出:

object(Ds\Vector)#1 (6) {
  [0] => int(1)
  [1] => int(2)
  [2] => int(3)
  [3] => int(4)
  [4] => int(5)
  [5] => array(6) {
    [0] => string(1) "g"
    [1] => string(1) "e"
    [2] => string(1) "e"
    [3] => string(1) "k"
    [4] => int(1)
    [5] => int(2)
  }
}

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



相關用法


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