PHP Doku:: Return current array key - arrayiterator.key.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)IteratorenThe ArrayIterator classArrayIterator::key

Ein Service von Reinhard Neidl - Webprogrammierung.

The ArrayIterator class

<<ArrayIterator::getFlags

ArrayIterator::ksort>>

ArrayIterator::key

(PHP 5 >= 5.0.0)

ArrayIterator::keyReturn current array key

Beschreibung

mixed ArrayIterator::key ( void )

This function returns the current array key

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

The current array key.

Beispiele

Beispiel #1 ArrayIterator::key() example

<?php
$array 
= array('key' => 'value');

$arrayobject = new ArrayObject($array);
$iterator $arrayobject->getIterator();

echo 
$iterator->key(); //key
?>


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)