📜  PHP | ArrayIterator offsetSet()函数

📅  最后修改于: 2022-05-13 01:56:34.437000             🧑  作者: Mango

PHP | ArrayIterator offsetSet()函数

ArrayIterator::offsetSet()函数是PHP中的一个内置函数,用于设置偏移量的值。

句法:

void ArrayIterator::offsetSet( mixed $index, mixed $newval )

参数:该函数接受上面提到的两个参数,如下所述:

  • $index:此参数保存设置偏移量的索引。
  • $newval:此参数保存要存储在给定索引处的新值。

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

下面的程序说明了PHP中的 ArrayIterator::offsetSet()函数:

方案一:

 4,
        "b" => 2,
        "g" => 8,
        "d" => 6,
        "e" => 1,
        "f" => 9
    )
);
  
// Update the value at index 1 
$arrItr->offsetSet("g", "Geeks"); 
    
// Print the updated ArrayObject 
print_r($arrItr); 
  
?>
输出:
ArrayIterator Object
(
    [storage:ArrayIterator:private] => Array
        (
            [a] => 4
            [b] => 2
            [g] => Geeks
            [d] => 6
            [e] => 1
            [f] => 9
        )

)

方案二:

offsetSet(1, "GeeksforGeeks"); 
    
// Print the updated ArrayObject 
print_r($arrItr); 
  
?>
输出:
ArrayIterator Object
(
    [storage:ArrayIterator:private] => Array
        (
            [0] => for
            [1] => GeeksforGeeks
            [2] => Science
            [3] => Geeks
            [4] => Portal
            [5] => Computer
        )

)

参考: https://www. PHP.net/manual/en/arrayiterator.offsetset。 PHP