La función ArrayIterator::key() es una función incorporada en PHP que devuelve la clave actual del elemento de array.
Sintaxis:
mixed ArrayIterator::key( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve la clave de array actual.
Los siguientes programas ilustran la función ArrayIterator::key() en PHP:
Programa 1:
<?php // Declare an ArrayIterator $arrItr = new ArrayIterator( array('G', 'e', 'e', 'k', 's', 'f', 'o', 'r') ); // Loop to display the array iterator key foreach($arrItr as $element) { echo $arrItr->key() . "\n"; } ?>
Producción:
0 1 2 3 4 5 6 7
Programa 2:
<?php // Declare an ArrayIterator $arrItr = new ArrayIterator( array( "a" => "Geeks", "b" => "for", "c" => "Geeks" ) ); // Append the element into array iterator $arrItr->append("Computer"); $arrItr->append("Science"); $arrItr->append("Portal"); // Display the key and its value of // array iterator foreach($arrItr as $element) { echo "key: " . $arrItr->key() . " Value: " . $arrItr->current() . "\n"; } ?>
Producción:
key: a Value: Geeks key: b Value: for key: c Value: Geeks key: 0 Value: Computer key: 1 Value: Science key: 2 Value: Portal
Referencia: https://www.php.net/manual/en/arrayiterator.key.php