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/Zend/tests/ |
Current File : //usr/local/src/php7/php-7.0.5/Zend/tests/foreach_004.phpt |
--TEST-- Iterator exceptions in foreach by reference --FILE-- <?php class IT extends ArrayIterator { private $n = 0; function __construct($trap = null) { parent::__construct([0, 1]); $this->trap = $trap; } function trap($trap) { if ($trap === $this->trap) { throw new Exception($trap); } } function rewind() {$this->trap(__FUNCTION__); return parent::rewind();} function valid() {$this->trap(__FUNCTION__); return parent::valid();} function key() {$this->trap(__FUNCTION__); return parent::key();} function next() {$this->trap(__FUNCTION__); return parent::next();} } foreach(['rewind', 'valid', 'key', 'next'] as $trap) { $obj = new IT($trap); try { // IS_CV foreach ($obj as $key => &$val) echo "$val\n"; } catch (Exception $e) { echo $e->getMessage() . "\n"; } unset($obj); try { // IS_VAR foreach (new IT($trap) as $key => &$val) echo "$val\n"; } catch (Exception $e) { echo $e->getMessage() . "\n"; } try { // IS_TMP_VAR foreach ((object)new IT($trap) as $key => &$val) echo "$val\n"; } catch (Exception $e) { echo $e->getMessage() . "\n"; } } ?> --EXPECT-- rewind rewind rewind valid valid valid key key key 0 next 0 next 0 next
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare