3v4l.org

run code in 300+ PHP versions simultaneously
<?php $it = new ArrayIterator(array('zf9396', 'foo', null)); $it->rewind(); try { $it->seek(3); } catch (OutOfBoundsException $e) { var_dump($it->key()); $it->rewind(); var_dump($it->key()); } $lit = new LimitIterator($it, 0, 10); try { $lit->seek(3); } catch (OutOfBoundsException $e) { var_dump($lit->key()); $lit->rewind(); var_dump($lit->key()); }

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
115.25 ms | 1383 KiB | 4 Q