📜  PHP的ArrayObject offsetUnset()函数

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

PHP的ArrayObject offsetUnset()函数

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

语法

void offsetUnset($index) 

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

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

下面的程序说明了上述函数:



程序一

"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
        )

)

方案二

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 /手动/ EN / arrayobject.offsetunset。 PHP