略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: Generator::key

2024-04-29

Generator::key

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

Generator::key返回当前产生的键

说明

public Generator::key(): mixed

获取产生的值的键

参数

此函数没有参数。

返回值

返回当前产生的键。

范例

示例 #1 Generator::key() example

<?php

function Gen()
{
    yield 
'key' => 'value';
}

$gen Gen();

echo 
"{$gen->key()} => {$gen->current()}";

以上例程会输出:

key => value
add a noteadd a note

User Contributed Notes 1 note

up
0
jasonrlester at yahoo dot com
16 days ago
This is important when considering how other Generators work such as JavaScript's an Python's. While PHP's generator has the ->valid() method they don't, or an equivalent. JS uses Iterator protocol which says next() should return an object of

{
    done: bool,
    value: mixed
}

In which case you can use keys->done to see if the generator can still be iterated.

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

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