PHP Doku:: Construct an ArrayIterator - arrayiterator.construct.html

Verlauf / Chronik / History: (1) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

The ArrayIterator class

<<ArrayIterator::asort

ArrayIterator::count>>

ArrayIterator::__construct

(PHP 5 >= 5.0.0)

ArrayIterator::__constructConstruct an ArrayIterator

Beschreibung

ArrayIterator::__construct ( mixed $array )

Constructs an ArrayIterator object.

Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.

Parameter-Liste

array

The array or object to be iterated on.

Rückgabewerte

An ArrayIterator object.

Fehler/Exceptions

ArrayIterator::__construct() throws an InvalidArgumentException if anything besides an array or an object is given.

Siehe auch


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
foobuilder at gmail dot com
2.11.2010 18:54
The method description looks like it requires a parameter, but it is actually optional:

$iter= new ArrayIterator();
$iter['bacon'] = 'tasty';



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",...)