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, 10 Oct 2008

view this page in

ArrayIterator::key

(PHP 5)

ArrayIterator::key現在の配列キーを返す

説明

mixed ArrayIterator::key ( void )

この関数は、現在の配列キーを返します

パラメータ

この関数にはパラメータはありません。

返り値

この関数は、現在の配列キーを返します

例1 ArrayIterator::key() の例

<?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, 10 Oct 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites