Iterator::key

(PHP 5 >= 5.0.0, PHP 7)

Iterator::keyВозвращает ключ текущего элемента

Описание

abstract public scalar Iterator::key ( void )

Возвращает ключ текущего элемента.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

При успехе возвращает scalar, или же NULL при неудаче.

Ошибки

Порождает E_NOTICE при неудачном выполнении.

Коментарии

Автор:
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;
    }
2012-03-14 02:34:43
http://php5.kiev.ua/manual/ru/iterator.key.html
Since PHP 5.5.X foreach can accept non scalar items. So the return can be anything ;)
2013-06-26 18:46:26
http://php5.kiev.ua/manual/ru/iterator.key.html
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;
}
?>
2020-08-26 07:26:10
http://php5.kiev.ua/manual/ru/iterator.key.html

    Поддержать сайт на родительском проекте КГБ