La función SplObjectStorage::key() es una función incorporada en PHP que se usa para obtener el índice del iterador que apunta actualmente.
Sintaxis:
int SplObjectStorage::key()
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el índice al que apunta actualmente el iterador.
Los siguientes programas ilustran la función SplObjectStorage::key() en PHP:
Programa 1:
<?php // Create an empty SplObjectStorage $str = new SplObjectStorage(); $obj = new StdClass; $str->attach($obj, "d1"); $str->rewind(); // Get current index $index = $str->key(); // Print Result var_dump($index); ?>
Producción:
int(0)
Programa 2:
<?php // Create an Empty SplObjectStorage $str = new SplObjectStorage(); $obj1 = new StdClass; $obj2 = new StdClass; $obj3 = new StdClass; $obj4 = new StdClass; $str->attach($obj1, "GeksforGeeks"); $str->attach($obj2, "GFG"); $str->attach($obj3); $str->attach($obj4, "DSA"); $str->rewind(); // Iterate and print data on each index while($str->valid()) { // Get index $index = $str->key(); $object = $str->current(); $data = $str->getInfo(); var_dump($index, $data); $str->next(); } ?>
Producción:
int(0) string(12) "GeksforGeeks" int(1) string(3) "GFG" int(2) NULL int(3) string(3) "DSA"
Referencia: https://www.php.net/manual/en/splobjectstorage.key.php