La función offsetGet() de la clase ArrayObject en PHP se usa para obtener el valor presente en un índice específico en ArrayObject.
Sintaxis :
mixed offsetGet($index)
Parámetros : esta función acepta un solo parámetro $index para el cual se devolverá el valor correspondiente.
Valor de retorno : esta función devuelve el valor presente en el índice especificado en ArrayObject.
Los siguientes programas ilustran la función anterior:
Programa 1 :
<?php // PHP program to illustrate the // offsetGet() function $arr = array("geeks100", "geeks99", "geeks1", "geeks02"); // Create array object $arrObject = new ArrayObject($arr); // Value present at index 1 echo "".($arrObject->offsetGet(1)); // Value present at index 3 echo "\n".($arrObject->offsetGet(3)); // Value present at index 0 echo "\n".($arrObject->offsetGet(0)); ?>
Producción:
geeks99 geeks02 geeks100
Programa 2 :
<?php // PHP program to illustrate the // offsetGet() function $arr = array("Welcome"=>"1", "to" => "2", "GfG" => "3"); // Create array object $arrObject = new ArrayObject($arr); // Print the value at index "Welcome" echo $arrObject->offsetGet("Welcome"); // Print the value at index "to" echo "\n".$arrObject->offsetGet("to"); ?>
Producción:
1 2
Referencia : http://php.net/manual/en/arrayobject.offsetget.php