PHP | Función ArrayIterator offsetUnset()

La función ArrayIterator::offsetUnset() es una función incorporada en PHP que se usa para anular el valor de una compensación.

Sintaxis:

void ArrayIterator::offsetUnset( mixed $index )

Parámetros: esta función acepta un solo parámetro $index que contiene el índice para desactivar el desplazamiento.

Valor devuelto: esta función no devuelve ningún valor.

Los siguientes programas ilustran la función ArrayIterator::offsetUnset() en PHP:

Programa 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"));
  
?>
Producción:

int(4)
NULL
int(8)
NULL
int(9)
NULL

Programa 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));
  
?>
Producción:

Geeks
NULL
for
NULL
Geeks
NULL

Referencia: https://www.php.net/manual/en/arrayiterator.offsetunset.php

Publicación traducida automáticamente

Artículo escrito por jit_t y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *