PHP 8.3.4 Released!

Generator::key

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

Generator::keyRécupère la clé cédée

Description

public Generator::key(): mixed

Récupère la clé de la valeur yielded.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Retourne la clé cédée.

Exemples

Exemple #1 Exemple avec Generator::key()

<?php

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

$gen = Gen();

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

L'exemple ci-dessus va afficher :

key => value

add a note

User Contributed Notes 1 note

up
1
jasonrlester at yahoo dot com
1 year ago
This is important when considering how other Generators work such as JavaScript's an Python's. While PHP's generator has the ->valid() method they don't, or an equivalent. JS uses Iterator protocol which says next() should return an object of

{
done: bool,
value: mixed
}

In which case you can use keys->done to see if the generator can still be iterated.
To Top