php教程

Generator::key

(PHP 5 >= 5.5.0, PHP 7)

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

说明

public Generator::key ( void ) : mixed

获取产生的值的键

参数

此函数没有参数。

返回值

返回当前产生的键。

范例

Example #1 Generator::key() example

<?php

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

$gen Gen();

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

以上例程会输出:

key => value

User Contributed Notes

There are no user contributed notes for this page.

CopyRight © 2008-2022 verySource.Com All Rights reserved. 京ICP备17048824号-1 京公网安备:11010502034788