Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /usr/local/src/php7/php-7.0.5/ext/spl/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/ext/spl/tests/iterator_005.phpt |
--TEST-- SPL: IteratorIterator and ArrayIterator/Object --FILE-- <?php class ArrayIteratorEx extends ArrayIterator { function rewind() { echo __METHOD__ . "\n"; return parent::rewind(); } } $it = new ArrayIteratorEx(range(0,3)); foreach(new IteratorIterator($it) as $v) { var_dump($v); } class ArrayObjectEx extends ArrayObject { function getIterator() { echo __METHOD__ . "\n"; return parent::getIterator(); } } $it = new ArrayObjectEx(range(0,3)); foreach(new IteratorIterator($it) as $v) { var_dump($v); } ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- ArrayIteratorEx::rewind int(0) int(1) int(2) int(3) ArrayObjectEx::getIterator int(0) int(1) int(2) int(3) ===DONE===
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare