PHP | Función ArrayIterator offsetGet()

La función ArrayIterator::offsetGet() es una función incorporada en PHP que se utiliza para obtener el valor de una compensación.

Sintaxis:

mixed ArrayIterator::offsetGet( mixed $index )

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

Valor devuelto: esta función devuelve el valor en el índice de compensación.

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

Programa 1:

<?php
  
// Declare an ArrayIterator
$arrItr = new ArrayIterator(
    array(
        "a" => 4,
        "b" => 2,
        "g" => 8,
        "d" => 6,
        "e" => 1,
        "f" => 9
    )
);
  
// Value present at index "a" 
echo ($arrItr->offsetGet("a")) . " "; 
    
// Value present at index "g"
echo ($arrItr->offsetGet("g")) . " "; 
    
// Value present at index "f"
echo ($arrItr->offsetGet("f")); 
  
?>
Producción:

4 8 9

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"; 
    
// Print the value at index 0
echo $arrItr->offsetGet(0) . "\n"; 
  
// Print the value at index 3
echo $arrItr->offsetGet(3); 
  
?>
Producción:

Geeks
for
Geeks

Referencia: https://www.php.net/manual/en/arrayiterator.offsetget.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 *