略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: Iterator::key

2024-05-03

Iterator::key

(PHP 5, PHP 7, PHP 8)

Iterator::key返回当前元素的键

说明

public Iterator::key(): mixed

返回当前元素的键。

参数

此函数没有参数。

返回值

成功返回标量,失败则返回 null

错误/异常

失败时分发 E_NOTICE 级错误。

add a noteadd a note

User Contributed Notes 3 notes

up
7
michaelgranados at gmail dot com
8 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
1 year 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
-1
Lszl Lajos Jnszky
10 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;
    }

官方地址:https://www.php.net/manual/en/iterator.key.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3