3v4l.org

run code in 300+ PHP versions simultaneously
<?php function test_iterator($dirname) { $files = array(); $dir = new DirectoryIterator($dirname); while($dir->valid()) { $files[] = (string)$dir->current(); $dir->next(); } return $files; } function test_iterator_bug($dirname) { $files = array(); $dir = new DirectoryIterator($dirname); foreach($dir as $file) { $files[] = (string)$file; } return $files; } echo 'PHP version: ' . phpversion() . "\n\n"; $dirname = dirname(__FILE__); foreach (array('iterator', 'iterator_bug') as $test_name) { echo "--- {$test_name} ---\n"; $foo = "test_{$test_name}"; var_dump($foo($dirname)); echo "\n"; }
Output for 8.0.12
PHP version: 8.0.12 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 8.0.11
PHP version: 8.0.11 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 8.0.10
PHP version: 8.0.10 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 8.0.9
PHP version: 8.0.9 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 8.0.8
PHP version: 8.0.8 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 8.0.7
PHP version: 8.0.7 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 8.0.6
PHP version: 8.0.6 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 8.0.5
PHP version: 8.0.5 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 8.0.3
PHP version: 8.0.3 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 8.0.2
PHP version: 8.0.2 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 8.0.1
PHP version: 8.0.1 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 8.0.0
PHP version: 8.0.0 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): Failed to open directory: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.25
PHP version: 7.4.25 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.24
PHP version: 7.4.24 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.23
PHP version: 7.4.23 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.22
PHP version: 7.4.22 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.21
PHP version: 7.4.21 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.20
PHP version: 7.4.20 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.19
PHP version: 7.4.19 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.18
PHP version: 7.4.18 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.16
PHP version: 7.4.16 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.15
PHP version: 7.4.15 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.14
PHP version: 7.4.14 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.13
PHP version: 7.4.13 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.12
PHP version: 7.4.12 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.11
PHP version: 7.4.11 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.10
PHP version: 7.4.10 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.9
PHP version: 7.4.9 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.8
PHP version: 7.4.8 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.7
PHP version: 7.4.7 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.6
PHP version: 7.4.6 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.5
PHP version: 7.4.5 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.4
PHP version: 7.4.4 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.3
PHP version: 7.4.3 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.2
PHP version: 7.4.2 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.1
PHP version: 7.4.1 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.4.0
PHP version: 7.4.0 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.31
PHP version: 7.3.31 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.30
PHP version: 7.3.30 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.29
PHP version: 7.3.29 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.28
PHP version: 7.3.28 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.27
PHP version: 7.3.27 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.26
PHP version: 7.3.26 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.25
PHP version: 7.3.25 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.24
PHP version: 7.3.24 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.23
PHP version: 7.3.23 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.22
PHP version: 7.3.22 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.21
PHP version: 7.3.21 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.20
PHP version: 7.3.20 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.19
PHP version: 7.3.19 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.18
PHP version: 7.3.18 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.17
PHP version: 7.3.17 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.16
PHP version: 7.3.16 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.15
PHP version: 7.3.15 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.14
PHP version: 7.3.14 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.13
PHP version: 7.3.13 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.12
PHP version: 7.3.12 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.11
PHP version: 7.3.11 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.10
PHP version: 7.3.10 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.9
PHP version: 7.3.9 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.8
PHP version: 7.3.8 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.7
PHP version: 7.3.7 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.6
PHP version: 7.3.6 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.5
PHP version: 7.3.5 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.4
PHP version: 7.3.4 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.3
PHP version: 7.3.3 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.2
PHP version: 7.3.2 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.1
PHP version: 7.3.1 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.3.0
PHP version: 7.3.0 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.34
PHP version: 7.2.34 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.33
PHP version: 7.2.33 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.32
PHP version: 7.2.32 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.31
PHP version: 7.2.31 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.30
PHP version: 7.2.30 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.29
PHP version: 7.2.29 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.28
PHP version: 7.2.28 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.27
PHP version: 7.2.27 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.26
PHP version: 7.2.26 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.25
PHP version: 7.2.25 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.24
PHP version: 7.2.24 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.23
PHP version: 7.2.23 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.22
PHP version: 7.2.22 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.21
PHP version: 7.2.21 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.20
PHP version: 7.2.20 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.19
PHP version: 7.2.19 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.18
PHP version: 7.2.18 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.17
PHP version: 7.2.17 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.16
PHP version: 7.2.16 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.15
PHP version: 7.2.15 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.14
PHP version: 7.2.14 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.13
PHP version: 7.2.13 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.12
PHP version: 7.2.12 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.11
PHP version: 7.2.11 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.10
PHP version: 7.2.10 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.9
PHP version: 7.2.9 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.8
PHP version: 7.2.8 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.7
PHP version: 7.2.7 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.6
PHP version: 7.2.6 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.5
PHP version: 7.2.5 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.4
PHP version: 7.2.4 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.3
PHP version: 7.2.3 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.2
PHP version: 7.2.2 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.1
PHP version: 7.2.1 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.2.0
PHP version: 7.2.0 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.33
PHP version: 7.1.33 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.32
PHP version: 7.1.32 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.31
PHP version: 7.1.31 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.30
PHP version: 7.1.30 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.29
PHP version: 7.1.29 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.28
PHP version: 7.1.28 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.27
PHP version: 7.1.27 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.26
PHP version: 7.1.26 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.25
PHP version: 7.1.25 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.24
PHP version: 7.1.24 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.23
PHP version: 7.1.23 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.22
PHP version: 7.1.22 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.21
PHP version: 7.1.21 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.20
PHP version: 7.1.20 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.19
PHP version: 7.1.19 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.18
PHP version: 7.1.18 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.17
PHP version: 7.1.17 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.16
PHP version: 7.1.16 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.15
PHP version: 7.1.15 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.14
PHP version: 7.1.14 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.13
PHP version: 7.1.13 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.12
PHP version: 7.1.12 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.11
PHP version: 7.1.11 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.10
PHP version: 7.1.10 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.9
PHP version: 7.1.9 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.8
PHP version: 7.1.8 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.7
PHP version: 7.1.7 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.6
PHP version: 7.1.6 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.5
PHP version: 7.1.5 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.4
PHP version: 7.1.4 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.3
PHP version: 7.1.3 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.2
PHP version: 7.1.2 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.1
PHP version: 7.1.1 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.1.0
PHP version: 7.1.0 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.33
PHP version: 7.0.33 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.32
PHP version: 7.0.32 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.31
PHP version: 7.0.31 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.30
PHP version: 7.0.30 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.29
PHP version: 7.0.29 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.28
PHP version: 7.0.28 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.27
PHP version: 7.0.27 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.26
PHP version: 7.0.26 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.25
PHP version: 7.0.25 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.24
PHP version: 7.0.24 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.23
PHP version: 7.0.23 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.22
PHP version: 7.0.22 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.21
PHP version: 7.0.21 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.20
PHP version: 7.0.20 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.19
PHP version: 7.0.19 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.18
PHP version: 7.0.18 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.17
PHP version: 7.0.17 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.16
PHP version: 7.0.16 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.15
PHP version: 7.0.15 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.14
PHP version: 7.0.14 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.13
PHP version: 7.0.13 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.12
PHP version: 7.0.12 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.11
PHP version: 7.0.11 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.10
PHP version: 7.0.10 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.9
PHP version: 7.0.9 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.8
PHP version: 7.0.8 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.7
PHP version: 7.0.7 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.6
PHP version: 7.0.6 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.5
PHP version: 7.0.5 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.4
PHP version: 7.0.4 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.3
PHP version: 7.0.3 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.2
PHP version: 7.0.2 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.1
PHP version: 7.0.1 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 7.0.0
PHP version: 7.0.0 --- iterator --- Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(/in): failed to open dir: Permission denied in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.40
PHP version: 5.6.40 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.39
PHP version: 5.6.39 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.38
PHP version: 5.6.38 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.37
PHP version: 5.6.37 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.36
PHP version: 5.6.36 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.35
PHP version: 5.6.35 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.34
PHP version: 5.6.34 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.33
PHP version: 5.6.33 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.32
PHP version: 5.6.32 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.31
PHP version: 5.6.31 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.30
PHP version: 5.6.30 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.29
PHP version: 5.6.29 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.28
PHP version: 5.6.28 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.27
PHP version: 5.6.27 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.26
PHP version: 5.6.26 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.25
PHP version: 5.6.25 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.24
PHP version: 5.6.24 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.23
PHP version: 5.6.23 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.22
PHP version: 5.6.22 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.21
PHP version: 5.6.21 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.20
PHP version: 5.6.20 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.19
PHP version: 5.6.19 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.18
PHP version: 5.6.18 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.17
PHP version: 5.6.17 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.16
PHP version: 5.6.16 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.15
PHP version: 5.6.15 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.14
PHP version: 5.6.14 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.13
PHP version: 5.6.13 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.12
PHP version: 5.6.12 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.11
PHP version: 5.6.11 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.10
PHP version: 5.6.10 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.9
PHP version: 5.6.9 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.8
PHP version: 5.6.8 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.7
PHP version: 5.6.7 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.6
PHP version: 5.6.6 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.5
PHP version: 5.6.5 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.4
PHP version: 5.6.4 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.3
PHP version: 5.6.3 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.2
PHP version: 5.6.2 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.1
PHP version: 5.6.1 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.6.0
PHP version: 5.6.0 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.38
PHP version: 5.5.38 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.37
PHP version: 5.5.37 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.36
PHP version: 5.5.36 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.35
PHP version: 5.5.35 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.34
PHP version: 5.5.34 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.33
PHP version: 5.5.33 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.32
PHP version: 5.5.32 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.31
PHP version: 5.5.31 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.30
PHP version: 5.5.30 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.29
PHP version: 5.5.29 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.28
PHP version: 5.5.28 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.27
PHP version: 5.5.27 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.26
PHP version: 5.5.26 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.25
PHP version: 5.5.25 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.24
PHP version: 5.5.24 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.23
PHP version: 5.5.23 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.22
PHP version: 5.5.22 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.21
PHP version: 5.5.21 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.20
PHP version: 5.5.20 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.19
PHP version: 5.5.19 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.18
PHP version: 5.5.18 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.17
PHP version: 5.5.17 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.16
PHP version: 5.5.16 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.15
PHP version: 5.5.15 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.14
PHP version: 5.5.14 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.13
PHP version: 5.5.13 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.12
PHP version: 5.5.12 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.11
PHP version: 5.5.11 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.10
PHP version: 5.5.10 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.9
PHP version: 5.5.9 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.8
PHP version: 5.5.8 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.7
PHP version: 5.5.7 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.6
PHP version: 5.5.6 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.5
PHP version: 5.5.5 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.4
PHP version: 5.5.4 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.3
PHP version: 5.5.3 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.2
PHP version: 5.5.2 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.1
PHP version: 5.5.1 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.5.0
PHP version: 5.5.0 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.45
PHP version: 5.4.45 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.44
PHP version: 5.4.44 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.43
PHP version: 5.4.43 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.42
PHP version: 5.4.42 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.41
PHP version: 5.4.41 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.40
PHP version: 5.4.40 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.39
PHP version: 5.4.39 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.38
PHP version: 5.4.38 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.37
PHP version: 5.4.37 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.36
PHP version: 5.4.36 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.35
PHP version: 5.4.35 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.34
PHP version: 5.4.34 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.33
PHP version: 5.4.33 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.32
PHP version: 5.4.32 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.31
PHP version: 5.4.31 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.30
PHP version: 5.4.30 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.29
PHP version: 5.4.29 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.28
PHP version: 5.4.28 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.27
PHP version: 5.4.27 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.26
PHP version: 5.4.26 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.25
PHP version: 5.4.25 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.24
PHP version: 5.4.24 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.23
PHP version: 5.4.23 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.22
PHP version: 5.4.22 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.21
PHP version: 5.4.21 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.20
PHP version: 5.4.20 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.19
PHP version: 5.4.19 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.18
PHP version: 5.4.18 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.17
PHP version: 5.4.17 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.16
PHP version: 5.4.16 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.15
PHP version: 5.4.15 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.14
PHP version: 5.4.14 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.13
PHP version: 5.4.13 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.12
PHP version: 5.4.12 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.11
PHP version: 5.4.11 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.10
PHP version: 5.4.10 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.9
PHP version: 5.4.9 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.8
PHP version: 5.4.8 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.7
PHP version: 5.4.7 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.6
PHP version: 5.4.6 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.5
PHP version: 5.4.5 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.4
PHP version: 5.4.4 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.3
PHP version: 5.4.3 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.2
PHP version: 5.4.2 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.1
PHP version: 5.4.1 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.4.0
PHP version: 5.4.0 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.29
PHP version: 5.3.29 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.28
PHP version: 5.3.28 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.27
PHP version: 5.3.27 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.26
PHP version: 5.3.26 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.25
PHP version: 5.3.25 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.24
PHP version: 5.3.24 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.23
PHP version: 5.3.23 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.22
PHP version: 5.3.22 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.21
PHP version: 5.3.21 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.20
PHP version: 5.3.20 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.19
PHP version: 5.3.19 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.18
PHP version: 5.3.18 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.17
PHP version: 5.3.17 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.16
PHP version: 5.3.16 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.15
PHP version: 5.3.15 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.14
PHP version: 5.3.14 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.13
PHP version: 5.3.13 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.12
PHP version: 5.3.12 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.11
PHP version: 5.3.11 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.10
PHP version: 5.3.10 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.9
PHP version: 5.3.9 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.8
PHP version: 5.3.8 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.7
PHP version: 5.3.7 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.6
PHP version: 5.3.6 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.5
PHP version: 5.3.5 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.4
PHP version: 5.3.4 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.3
PHP version: 5.3.3 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.2
PHP version: 5.3.2 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.1
PHP version: 5.3.1 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.3.0
PHP version: 5.3.0 --- iterator --- Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.17
PHP version: 5.2.17 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.16
PHP version: 5.2.16 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.15
PHP version: 5.2.15 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.14
PHP version: 5.2.14 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.13
PHP version: 5.2.13 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.12
PHP version: 5.2.12 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.11
PHP version: 5.2.11 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.10
PHP version: 5.2.10 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.9
PHP version: 5.2.9 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.8
PHP version: 5.2.8 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.7
PHP version: 5.2.7 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.6
PHP version: 5.2.6 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.5
PHP version: 5.2.5 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.4
PHP version: 5.2.4 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.3
PHP version: 5.2.3 --- iterator --- Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in): failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in /in/Q08CR on line 5
Process exited with code 255.
Output for 5.2.2
PHP version: 5.2.2 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in) [&lt;a href='function.DirectoryIterator---construct'&gt;function.DirectoryIterator---construct&lt;/a&gt;]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator-&gt;__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.2.1
PHP version: 5.2.1 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in) [&lt;a href='function.DirectoryIterator---construct'&gt;function.DirectoryIterator---construct&lt;/a&gt;]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator-&gt;__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.2.0
PHP version: 5.2.0 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in) [&lt;a href='function.DirectoryIterator---construct'&gt;function.DirectoryIterator---construct&lt;/a&gt;]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator-&gt;__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.1.6
PHP version: 5.1.6 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in) [&lt;a href='function.DirectoryIterator---construct'&gt;function.DirectoryIterator---construct&lt;/a&gt;]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator-&gt;__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.1.5
PHP version: 5.1.5 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in) [&lt;a href='function.DirectoryIterator---construct'&gt;function.DirectoryIterator---construct&lt;/a&gt;]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator-&gt;__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.1.4
PHP version: 5.1.4 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in) [&lt;a href='function.DirectoryIterator---construct'&gt;function.DirectoryIterator---construct&lt;/a&gt;]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator-&gt;__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.1.3
PHP version: 5.1.3 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in) [&lt;a href='function.DirectoryIterator---construct'&gt;function.DirectoryIterator---construct&lt;/a&gt;]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator-&gt;__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.1.2
PHP version: 5.1.2 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in) [&lt;a href='function.--construct'&gt;function.--construct&lt;/a&gt;]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator-&gt;__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.1.1
PHP version: 5.1.1 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in) [<a href='function.--construct'>function.--construct</a>]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.1.0
PHP version: 5.1.0 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(/in) [<a href='function.--construct'>function.--construct</a>]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.0.5
PHP version: 5.0.5 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'Exception' with message 'DirectoryIterator::__construct(/in) [<a href='function.--construct'>function.--construct</a>]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.0.4
PHP version: 5.0.4 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'Exception' with message 'DirectoryIterator::__construct(/in) [<a href='function.--construct'>function.--construct</a>]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.0.3
PHP version: 5.0.3 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'Exception' with message 'DirectoryIterator::__construct(/in) [<a href='function.--construct'>function.--construct</a>]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(5): DirectoryIterator->__construct('/in') #1 /in/Q08CR(28): test_iterator('/in') #2 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.0.2
PHP version: 5.0.2 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'Exception' with message 'DirectoryIterator::__construct(/in) [<a href='function.--construct'>function.--construct</a>]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(28): test_iterator('/in') #1 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.0.1
PHP version: 5.0.1 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'Exception' with message 'DirectoryIterator::__construct(/in) [<a href='function.--construct'>function.--construct</a>]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(28): test_iterator('/in') #1 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 5.0.0
PHP version: 5.0.0 --- iterator --- <br /> <b>Fatal error</b>: Uncaught exception 'Exception' with message 'DirectoryIterator::__construct(/in) [<a href='function.--construct'>function.--construct</a>]: failed to open dir: Permission denied' in /in/Q08CR:5 Stack trace: #0 /in/Q08CR(28): test_iterator('/in') #1 {main} thrown in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.4.9
PHP version: 4.4.9 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.4.8
PHP version: 4.4.8 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.4.7
PHP version: 4.4.7 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.4.6
PHP version: 4.4.6 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.4.5
PHP version: 4.4.5 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.4.4
PHP version: 4.4.4 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.4.3
PHP version: 4.4.3 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.4.2
PHP version: 4.4.2 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.4.1
PHP version: 4.4.1 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.4.0
PHP version: 4.4.0 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.11
PHP version: 4.3.11 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.10
PHP version: 4.3.10 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.9
PHP version: 4.3.9 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.8
PHP version: 4.3.8 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.7
PHP version: 4.3.7 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.6
PHP version: 4.3.6 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.5
PHP version: 4.3.5 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.4
PHP version: 4.3.4 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.3
PHP version: 4.3.3 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.2
PHP version: 4.3.2 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.1
PHP version: 4.3.1 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />
Output for 4.3.0
PHP version: 4.3.0 --- iterator --- <br /> <b>Fatal error</b>: Cannot instantiate non-existent class: directoryiterator in <b>/in/Q08CR</b> on line <b>5</b><br />

preferences:
266.42 ms | 401 KiB | 386 Q