Overview
KB
Technical FAQ
PHP Manual
CSS2 Manual
HTML Manual
JS Guide
JS Reference
PhpDock Manual
Nu-Coder Manual
PhpExpress Manual
PHP Joomla
Development
Learn PHP
 
<ArrayIterator::currentArrayIterator::next>
Last updated: Tue, 19 Sep 2006

ArrayIterator::key

(no version information, might be only in CVS)

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
?>




<ArrayIterator::currentArrayIterator::next>
Last updated: Tue, 19 Sep 2006