当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ArrayIterator offsetUnset()用法及代码示例


ArrayIterator::offsetUnset()函数是PHP中的内置函数,用于取消设置偏移量的值。

用法:

void ArrayIterator::offsetUnset( mixed $index )

参数:该函数接受单个参数$index,该参数保存索引以取消设置偏移量。


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

以下示例程序旨在说明PHP中的ArrayIterator::offsetUnset()函数:

程序1:

<?php 
  
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array( 
        "a" => 4, 
        "b" => 2, 
        "g" => 8, 
        "d" => 6, 
        "e" => 1, 
        "f" => 9 
    ) 
); 
  
// Display the offset value 
var_dump($arrItr->offsetGet("a"));  
  
// Unset the offset value 
var_dump($arrItr->offsetUnset("a")); 
    
// Display the offset value 
var_dump($arrItr->offsetGet("g"));  
  
// Unset the offset value 
var_dump($arrItr->offsetUnset("g")); 
  
// Display the offset value 
var_dump($arrItr->offsetGet("f"));  
  
// Unset the offset value 
var_dump($arrItr->offsetUnset("f")); 
  
?>
输出:
int(4)
NULL
int(8)
NULL
int(9)
NULL

程序2:

<?php 
     
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array( 
        "for", "Geeks", "Science", 
        "Geeks", "Portal", "Computer"
    ) 
); 
  
    
// Print the value at index 1  
echo $arrItr->offsetGet(1) . "\n";  
  
// Unset the offset value 
var_dump($arrItr->offsetUnset(1)); 
    
// Print the value at index 0 
echo $arrItr->offsetGet(0) . "\n"; 
  
// Unset the offset value 
var_dump($arrItr->offsetUnset(0)); 
  
// Print the value at index 3 
echo $arrItr->offsetGet(3) . "\n";  
  
// Unset the offset value 
var_dump($arrItr->offsetUnset(3)); 
  
?>
输出:
Geeks
NULL
for
NULL
Geeks
NULL

参考: https://www.php.net/manual/en/arrayiterator.offsetunset.php



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | ArrayIterator offsetUnset() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。