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

search for in the

Iterator::next> <Iterator::current
[edit] Last updated: Fri, 23 Mar 2012

view this page in

Iterator::key

(PHP 5 >= 5.0.0)

Iterator::keyO anki elemanın anahtarını döndürür

Açıklama

abstract public scalar Iterator::key ( void )

O anki elemanın anahtarını döndürür.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

Başarı durumunda scalar türünde bir değer, aksi takdirde NULL döner.

Hatalar/İstisnalar

Başarısızlık durumunda bir E_NOTICE çıktılanır.



add a note add a note User Contributed Notes Iterator::key
Lszl Lajos Jnszky 14-Mar-2012 12:34
And converts everything to integer except string, so in php the post process could be:

    public function key() {
        $yourKey = $this->createYourKey();
        if (is_object($yourKey) || is_array($yourKey))
            throw new Exception('Array and Object not allowed.');
        elseif (is_string($yourKey))
            return $yourKey;
        else
            return (int) $yourKey;
    }
Anonymous 26-May-2011 03:40
Be careful, the returned value must be a scalar! Took me a while to figure out why foreach() doesn't work on my class that handles arrays with object keys...

 
show source | credits | stats | sitemap | contact | advertising | mirror sites