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.

Приклади

Приклад #1 Generator::key() example

<?php

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

$gen Gen();

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

Наведений вище приклад виведе:

key => value

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top