AppendIterator::key
(PHP 5 >= 5.1.0)
AppendIterator::key — Lit la clé courante
Description
public scalar AppendIterator::key
( void
)
Lit la clé courante.
Liste de paramètres
Cette fonction ne contient aucun paramètre.
Valeurs de retour
La clé courante si c'est possible, et NULL
sinon.
Exemples
Exemple #1 Exemple avec AppendIterator::key()
<?php $array_a = new ArrayIterator(array('a' => 'aardwolf', 'b' => 'bear', 'c' => 'capybara')); $array_b = new ArrayIterator(array('apple', 'orange', 'lemon')); $iterator = new AppendIterator; $iterator->append($array_a); $iterator->append($array_b); // Itération manuelle $iterator->rewind(); while ($iterator->valid()) { echo $iterator->key() . ' ' . $iterator->current() . PHP_EOL; $iterator->next(); } echo PHP_EOL; // Avec foreach foreach ($iterator as $key => $current) { echo $key . ' ' . $current . PHP_EOL; } ?>
L'exemple ci-dessus va afficher :
a aardwolf b bear c capybara 0 apple 1 orange 2 lemon a aardwolf b bear c capybara 0 apple 1 orange 2 lemon
Voir aussi
- Iterator::key() - Retourne la clé de l'élément courant
- AppendIterator::current() - Lit la valeur courante
- AppendIterator::valid() - Vérifie la validité de l'élément courant
- AppendIterator::next() - Passe à l'élément suivant
- AppendIterator::rewind() - Remet l'itérateur au début