PHP Doku:: Check whether array contains more entries - arrayiterator.valid.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)IteratorenThe ArrayIterator classArrayIterator::valid

Ein Service von Reinhard Neidl - Webprogrammierung.

The ArrayIterator class

<<ArrayIterator::unserialize

The CachingIterator class>>

ArrayIterator::valid

(PHP 5 >= 5.0.0)

ArrayIterator::validCheck whether array contains more entries

Beschreibung

bool ArrayIterator::valid ( void )

Checks if the array contains any more entries.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 ArrayIterator::valid() example

<?php
$array 
= array('1' => 'one');

$arrayobject = new ArrayObject($array);
$iterator $arrayobject->getIterator();

var_dump($iterator->valid()); //bool(true)

$iterator->next(); // advance to the next item

//bool(false) because there is only one array element
var_dump($iterator->valid());
?>


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
kaigillmann at gmxpro dot net
11.11.2005 10:55
Sometimes you need to search through the array.
Here is my object-orientated Version:

<?php
class MyArrayIterator extends ArrayIterator
{
    public function
available($value)
    {
        if (
in_array($value, (array)$this))
            return
true;
        else
            return
false;
    }
   
    public function
search($value)
    {
        foreach((array)
$this as $Key => $values)
        {
            if (
$values == $value)
                return
$Key;
        }
        return
false;
    }
}
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)