PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ArrayIterator::next> <ArrayIterator::current
Last updated: Fri, 11 Apr 2008

view this page in

ArrayIterator::key

(PHP 5)

ArrayIterator::key — Return current array key

Descrizione

mixed ArrayIterator::key ( void )

This function returns the current array key

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The current array key.

Esempi

Example #1 ArrayIterator::key() example

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

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

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



add a note add a note User Contributed Notes
ArrayIterator::key
There are no user contributed notes for this page.

ArrayIterator::next> <ArrayIterator::current
Last updated: Fri, 11 Apr 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites