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

search for in the

Iterator::next> <Iterator::current
[edit] Last updated: Wed, 19 Jun 2013

view this page in

Iterator::key

(PHP 5 >= 5.0.0)

Iterator::keyReturn the key of the current element

Descrierea

abstract public scalar Iterator::key ( void )

Returns the key of the current element.

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns scalar on success, or NULL on failure.

Erori/Excepții

Issues E_NOTICE on failure.



add a note add a note User Contributed Notes Iterator::key - [2 notes]
up
1
Lszl Lajos Jnszky
1 year ago
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;
    }
up
1
Anonymous
2 years ago
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 | sitemap | contact | advertising | mirror sites