3v4l.org

run code in 300+ PHP versions simultaneously
<?php $beforeDay = time() - (60*60*24); $i = 0; $day = 0; foreach (new DirectoryIterator('../files/') as $fileInfo) { if($fileInfo->isFile() && filemtime($fileInfo->getPathName()) > $beforeDay) { $day++; } $i++; } $now = new DateTime("2014-04-07 15:30:00"); var_dump($now->diff(DateTime())); echo "<pre>total: " . $i . "\n24h: " . $day."</pre>";
Output for 7.1.25, 7.2.0 - 7.2.13, 7.3.0 - 7.3.1
Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(): open_basedir restriction in effect. File(../files/) is not within the allowed path(s): (/tmp:/in:/etc) in /in/59Xmc:6 Stack trace: #0 /in/59Xmc(6): DirectoryIterator->__construct('../files/') #1 {main} thrown in /in/59Xmc on line 6
Process exited with code 255.
Output for 7.1.20
Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(): open_basedir restriction in effect. File(../files/) is not within the allowed path(s): (/tmp:/in) in /in/59Xmc:6 Stack trace: #0 /in/59Xmc(6): DirectoryIterator->__construct('../files/') #1 {main} thrown in /in/59Xmc on line 6
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.10
Fatal error: Uncaught UnexpectedValueException: DirectoryIterator::__construct(../files/): failed to open dir: No such file or directory in /in/59Xmc:6 Stack trace: #0 /in/59Xmc(6): DirectoryIterator->__construct('../files/') #1 {main} thrown in /in/59Xmc on line 6
Process exited with code 255.
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.37, 5.6.0 - 5.6.28
Fatal error: Uncaught exception 'UnexpectedValueException' with message 'DirectoryIterator::__construct(../files/): failed to open dir: No such file or directory' in /in/59Xmc:6 Stack trace: #0 /in/59Xmc(6): DirectoryIterator->__construct('../files/') #1 {main} thrown in /in/59Xmc on line 6
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Fatal error: Uncaught exception 'RuntimeException' with message 'DirectoryIterator::__construct(../files/): failed to open dir: No such file or directory' in /in/59Xmc:6 Stack trace: #0 /in/59Xmc(6): DirectoryIterator->__construct('../files/') #1 {main} thrown in /in/59Xmc on line 6
Process exited with code 255.
Output for 5.0.3 - 5.0.5
Fatal error: Uncaught exception 'Exception' with message 'DirectoryIterator::__construct(../files/): failed to open dir: No such file or directory' in /in/59Xmc:6 Stack trace: #0 /in/59Xmc(6): DirectoryIterator->__construct('../files/') #1 {main} thrown in /in/59Xmc on line 6
Process exited with code 255.
Output for 5.0.0 - 5.0.2
Fatal error: Uncaught exception 'Exception' with message 'DirectoryIterator::__construct(../files/): failed to open dir: No such file or directory' in /in/59Xmc:6 Stack trace: #0 {main} thrown in /in/59Xmc on line 6
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9
Fatal error: Cannot instantiate non-existent class: directoryiterator in /in/59Xmc on line 6
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Cannot instantiate non-existent class: directoryiterator in /in/59Xmc on line 6

preferences:
135.17 ms | 401 KiB | 229 Q