PHP 8.6.0 Beta 1 is available for testing

Iterator::key

(PHP 5, PHP 7, PHP 8)

Iterator::keyDevuelve la clave del elemento actual

Descripción

public function Iterator::key(): mixed

Devuelve la clave del elemento actual.

Parámetros

Esta función no contiene ningún parámetro.

Valores devueltos

Devuelve scalar en caso de éxito, o null en caso de error.

Errores/Excepciones

Muestra un E_NOTICE en caso de error.

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes 3 notes

up
10
michaelgranados at gmail dot com
13 years ago
Since PHP 5.5.X foreach can accept non scalar items. So the return can be anything ;)
up
-1
sofe2038 at gmail dot com
5 years ago
This function may return any type, not just scalar, for some Iterator types. In particular, it is very trivial to write a generator function that yields arbitrary keys:
<?php
function foo() {
 yield null => 1;
 yield new stdclass => 2;
}
?>
up
-2
Lszl Lajos Jnszky
14 years ago
And converts everything to integer except string, so in php the post process could be:
 public function key() {
 $yourKey = $this->createYourKey();
 if (is_object($yourKey) || is_array($yourKey))
 throw new Exception('Array and Object not allowed.');
 elseif (is_string($yourKey))
 return $yourKey;
 else
 return (int) $yourKey;
 }
+add a note

AltStyle によって変換されたページ (->オリジナル) /