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


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


PHP中ArrayObject类的offsetUnset()函数用于取消设置特定索引处的预设值。换句话说,它用于删除ArrayObject中特定索引处的值。

用法

void offsetUnset($index) 

参数:此函数接受单个参数$index,该参数是要取消设置其值的索引。


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

以下示例程序旨在说明上述函数:

程序1:

<?php 
// PHP program to illustrate the 
// offsetUnset() function 
  
$arr = array("Welcome"=>"1", "to" => "2", "GfG" => "3"); 
  
// Create array object 
$arrObject = new ArrayObject($arr); 
  
// Unset the value at index "to" 
$arrObject->offsetUnset("to"); 
  
// Print the updated ArrayObject 
print_r($arrObject); 
  
?>
输出:
ArrayObject Object
(
    [storage:ArrayObject:private] => Array
        (
            [Welcome] => 1
            [GfG] => 3
        )

)

程序2:

<?php 
// PHP program to illustrate the 
// offsetUnset() function 
  
$arr = array("geeks100", "geeks99", "geeks1", "geeks02"); 
  
// Create array object 
$arrObject = new ArrayObject($arr); 
  
// Unset the value at index 1 
$arrObject->offsetUnset(1); 
  
// Unset the value at index 1 
$arrObject->offsetUnset(2); 
  
// Print the updated ArrayObject 
print_r($arrObject); 
  
?>
输出:
ArrayObject Object
(
    [storage:ArrayObject:private] => Array
        (
            [0] => geeks100
            [3] => geeks02
        )

)

参考: http://php.net/manual/en/arrayobject.offsetunset.php



相关用法


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