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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。