(PHP 5 >= 5.5.0)
Generator::key — Get the yielded key
Gets the key of the yielded value.
이 함수는 인수가 없습니다.
Returns the yielded key.
Example #1 Generator::key() example
<?phpfunction Gen(){ yield 'key' => 'value';}$gen = Gen();echo "{$gen->key()} => {$gen->current()}";
위 예제의 출력:
key => value