update : 2015.11.03
php.shukuma.com

검색:
 
 
Get the yielded key

Generator::key

(PHP 5 >= 5.5.0)

Generator::keyGet the yielded key

설명

public mixed Generator::key ( void )

Gets the key of the yielded value.

인수

이 함수는 인수가 없습니다.

반환값

Returns the yielded key.

예제

Example #1 Generator::key() example

<?php

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

$gen Gen();

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

위 예제의 출력:

key => value