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/fixedarray_019.phpt |
--TEST-- SPL: FixedArray: overriden iterator methods --FILE-- <?php class SplFixedArray2 extends SplFixedArray { public function rewind() { echo "rewind\n"; return parent::rewind(); } public function valid() { echo "valid\n"; return parent::valid(); } public function next() { echo "next\n"; return parent::next(); } public function current() { echo "current\n"; return parent::current(); } public function key() { echo "key\n"; return parent::key(); } } $fa = new SplFixedArray2(3); foreach($fa as $k=>$v) { echo "$k=>"; var_dump($v); } ?> --EXPECT-- rewind valid current key 0=>NULL next valid current key 1=>NULL next valid current key 2=>NULL next valid
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare