La función ArrayIterator::offsetExists() es una función incorporada en PHP que se usa para verificar la existencia de compensación en el índice dado.
Sintaxis:
bool ArrayIterator::offsetExists( mixed $index )
Parámetros: esta función acepta un solo parámetro $index que contiene el valor del índice para comprobar la existencia de compensación.
Valor devuelto: esta función devuelve VERDADERO si existe el desplazamiento, de lo contrario devuelve FALSO.
Los siguientes programas ilustran la función ArrayIterator::offsetExists() 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")); // Check the existence of offset var_dump($arrItr->offsetExists("a")); // Unset the offset value var_dump($arrItr->offsetUnset("a")); // Check the existence of offset var_dump($arrItr->offsetExists("a")); ?>
Producción:
int(4) bool(true) NULL bool(false)
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"; // Check the existence of offset var_dump($arrItr->offsetExists(1)); // Unset the offset value var_dump($arrItr->offsetUnset(1)); // Check the existence of offset var_dump($arrItr->offsetExists(1)); // Print the value at index 0 echo $arrItr->offsetGet(0) . "\n"; // Check the existence of offset var_dump($arrItr->offsetExists(0)); // Unset the offset value var_dump($arrItr->offsetUnset(0)); // Check the existence of offset var_dump($arrItr->offsetExists(0)); ?>
Producción:
Geeks bool(true) NULL bool(false) for bool(true) NULL bool(false)
Referencia: https://www.php.net/manual/en/arrayiterator.offsetexists.php