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, 22 Aug 2008

view this page in

ArrayIterator::key

(PHP 5)

ArrayIterator::keyReturn current array key

Descripción

mixed ArrayIterator::key ( void )

This function returns the current array key

Lista de parámetros

This function has no parameters.

Valores retornados

The current array key.

Ejemplos

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, 22 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites