(PHP 5 >= 5.5.0, PHP 7)
Generator::key — Get the yielded key
Această funcție nu are parametri.
Returns the yielded key.
Example #1 Generator::key() example
<?php
function Gen()
{
yield 'key' => 'value';
}
$gen = Gen();
echo "{$gen->key()} => {$gen->current()}";
Exemplul de mai sus va afișa:
key => value