Generator::key

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

Generator::key返回當(dāng)前產(chǎn)生的鍵

說(shuō)明

public Generator::key(): mixed

獲取產(chǎn)生的值的鍵

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

返回當(dāng)前產(chǎn)生的鍵。

范例

示例 #1 Generator::key() example

<?php

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

$gen Gen();

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

以上例程會(huì)輸出:

key => value