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

search for in the

ArrayIterator::next> <ArrayIterator::current
Last updated: Sun, 25 Nov 2007

view this page in

ArrayIterator::key

(PHP 5)

ArrayIterator::key — Return current array key

Description

mixed ArrayIterator::key ( void )

This function returns the current array key

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: Sun, 25 Nov 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites