3v4l.org

run code in 300+ PHP versions simultaneously
<?php // open this directory $myDirectory = opendir("/var"); // get each entry while($entryName = readdir($myDirectory)) { $dirArray[] = $entryName; } // close directory closedir($myDirectory); // count elements in array $indexCount = count($dirArray); Print ("$indexCount files<br>\n"); // sort 'em sort($dirArray); // print 'em print("<TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks>\n"); print("<TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR>\n"); // loop through the array of files and print them all for($index=0; $index < $indexCount; $index++) { if (substr("$dirArray[$index]", 0, 1) != "."){ // don't list hidden files print("<TR><TD><a href=\"$dirArray[$index]\">$dirArray[$index]</a></td>"); print("<td>"); print(filetype($dirArray[$index])); print("</td>"); print("<td>"); print(filesize($dirArray[$index])); print("</td>"); print("</TR>\n"); } } print("</TABLE>\n");
Output for 8.3.0 - 8.3.7
Warning: opendir(): open_basedir restriction in effect. File(/var) is not within the allowed path(s): (/tmp:/in:/etc) in /in/hGTBu on line 2 Warning: opendir(/var): Failed to open directory: Operation not permitted in /in/hGTBu on line 2 Fatal error: Uncaught TypeError: readdir(): Argument #1 ($dir_handle) must be of type resource or null, false given in /in/hGTBu:5 Stack trace: #0 /in/hGTBu(5): readdir(false) #1 {main} thrown in /in/hGTBu on line 5
Process exited with code 255.
Output for 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18
Warning: opendir(): open_basedir restriction in effect. File(/var) is not within the allowed path(s): (/tmp:/in:/etc) in /in/hGTBu on line 2 Warning: opendir(/var): Failed to open directory: Operation not permitted in /in/hGTBu on line 2 Fatal error: Uncaught TypeError: readdir(): Argument #1 ($dir_handle) must be of type resource or null, bool given in /in/hGTBu:5 Stack trace: #0 /in/hGTBu(5): readdir(false) #1 {main} thrown in /in/hGTBu on line 5
Process exited with code 255.
Output for 8.0.13
14 files<br> <TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks> <TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR> <TR><TD><a href="cache">cache</a></td><td> Warning: filetype(): Lstat failed for cache in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for cache in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="empty">empty</a></td><td> Warning: filetype(): Lstat failed for empty in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for empty in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="games">games</a></td><td> Warning: filetype(): Lstat failed for games in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for games in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="lib">lib</a></td><td>link</td><td>1294</td></TR> <TR><TD><a href="local">local</a></td><td> Warning: filetype(): Lstat failed for local in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for local in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="lock">lock</a></td><td> Warning: filetype(): Lstat failed for lock in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for lock in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="log">log</a></td><td> Warning: filetype(): Lstat failed for log in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for log in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="mail">mail</a></td><td> Warning: filetype(): Lstat failed for mail in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for mail in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="opt">opt</a></td><td>dir</td><td>0</td></TR> <TR><TD><a href="run">run</a></td><td>dir</td><td>160</td></TR> <TR><TD><a href="spool">spool</a></td><td> Warning: filetype(): Lstat failed for spool in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for spool in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="tmp">tmp</a></td><td>dir</td><td>2055940</td></TR> </TABLE>
Output for 5.2.3 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34, 7.3.0 - 7.3.32, 7.4.0 - 7.4.25, 8.0.0 - 8.0.12
14 files<br> <TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks> <TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR> <TR><TD><a href="cache">cache</a></td><td> Warning: filetype(): Lstat failed for cache in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for cache in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="empty">empty</a></td><td> Warning: filetype(): Lstat failed for empty in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for empty in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="games">games</a></td><td> Warning: filetype(): Lstat failed for games in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for games in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="lib">lib</a></td><td>link</td><td>1294</td></TR> <TR><TD><a href="local">local</a></td><td> Warning: filetype(): Lstat failed for local in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for local in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="lock">lock</a></td><td> Warning: filetype(): Lstat failed for lock in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for lock in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="log">log</a></td><td> Warning: filetype(): Lstat failed for log in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for log in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="mail">mail</a></td><td> Warning: filetype(): Lstat failed for mail in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for mail in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="opt">opt</a></td><td>dir</td><td>0</td></TR> <TR><TD><a href="run">run</a></td><td>dir</td><td>100</td></TR> <TR><TD><a href="spool">spool</a></td><td> Warning: filetype(): Lstat failed for spool in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for spool in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="tmp">tmp</a></td><td>dir</td><td>49460</td></TR> </TABLE>
Output for 7.4.33
14 files<br> <TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks> <TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR> <TR><TD><a href="cache">cache</a></td><td> Warning: filetype(): Lstat failed for cache in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for cache in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="empty">empty</a></td><td> Warning: filetype(): Lstat failed for empty in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for empty in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="games">games</a></td><td> Warning: filetype(): Lstat failed for games in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for games in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="lib">lib</a></td><td>link</td><td>1294</td></TR> <TR><TD><a href="local">local</a></td><td> Warning: filetype(): Lstat failed for local in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for local in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="lock">lock</a></td><td> Warning: filetype(): Lstat failed for lock in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for lock in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="log">log</a></td><td> Warning: filetype(): Lstat failed for log in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for log in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="mail">mail</a></td><td> Warning: filetype(): Lstat failed for mail in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for mail in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="opt">opt</a></td><td>dir</td><td>0</td></TR> <TR><TD><a href="run">run</a></td><td>dir</td><td>80</td></TR> <TR><TD><a href="spool">spool</a></td><td> Warning: filetype(): Lstat failed for spool in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for spool in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="tmp">tmp</a></td><td>dir</td><td>400</td></TR> </TABLE>
Output for 7.4.27 - 7.4.32
Warning: opendir(): open_basedir restriction in effect. File(/var) is not within the allowed path(s): (/tmp:/in:/etc) in /in/hGTBu on line 2 Warning: opendir(/var): failed to open dir: Operation not permitted in /in/hGTBu on line 2 Warning: readdir() expects parameter 1 to be resource, bool given in /in/hGTBu on line 5 Warning: closedir() expects parameter 1 to be resource, bool given in /in/hGTBu on line 10 Notice: Undefined variable: dirArray in /in/hGTBu on line 13 Warning: count(): Parameter must be an array or an object that implements Countable in /in/hGTBu on line 13 0 files<br> Warning: sort() expects parameter 1 to be array, null given in /in/hGTBu on line 17 <TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks> <TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR> </TABLE>
Output for 7.4.26
14 files<br> <TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks> <TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR> <TR><TD><a href="cache">cache</a></td><td> Warning: filetype(): Lstat failed for cache in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for cache in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="empty">empty</a></td><td> Warning: filetype(): Lstat failed for empty in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for empty in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="games">games</a></td><td> Warning: filetype(): Lstat failed for games in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for games in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="lib">lib</a></td><td>link</td><td>1294</td></TR> <TR><TD><a href="local">local</a></td><td> Warning: filetype(): Lstat failed for local in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for local in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="lock">lock</a></td><td> Warning: filetype(): Lstat failed for lock in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for lock in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="log">log</a></td><td> Warning: filetype(): Lstat failed for log in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for log in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="mail">mail</a></td><td> Warning: filetype(): Lstat failed for mail in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for mail in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="opt">opt</a></td><td>dir</td><td>0</td></TR> <TR><TD><a href="run">run</a></td><td>dir</td><td>160</td></TR> <TR><TD><a href="spool">spool</a></td><td> Warning: filetype(): Lstat failed for spool in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for spool in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="tmp">tmp</a></td><td>dir</td><td>2102200</td></TR> </TABLE>
Output for 7.3.33
14 files<br> <TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks> <TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR> <TR><TD><a href="cache">cache</a></td><td> Warning: filetype(): Lstat failed for cache in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for cache in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="empty">empty</a></td><td> Warning: filetype(): Lstat failed for empty in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for empty in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="games">games</a></td><td> Warning: filetype(): Lstat failed for games in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for games in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="lib">lib</a></td><td>link</td><td>1294</td></TR> <TR><TD><a href="local">local</a></td><td> Warning: filetype(): Lstat failed for local in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for local in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="lock">lock</a></td><td> Warning: filetype(): Lstat failed for lock in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for lock in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="log">log</a></td><td> Warning: filetype(): Lstat failed for log in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for log in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="mail">mail</a></td><td> Warning: filetype(): Lstat failed for mail in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for mail in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="opt">opt</a></td><td>dir</td><td>0</td></TR> <TR><TD><a href="run">run</a></td><td>dir</td><td>80</td></TR> <TR><TD><a href="spool">spool</a></td><td> Warning: filetype(): Lstat failed for spool in /in/hGTBu on line 27 </td><td> Warning: filesize(): stat failed for spool in /in/hGTBu on line 30 </td></TR> <TR><TD><a href="tmp">tmp</a></td><td>dir</td><td>420</td></TR> </TABLE>
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.2
14 files<br> <TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks> <TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR> <TR><TD><a href="cache">cache</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for cache in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for cache in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="empty">empty</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for empty in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for empty in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="games">games</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for games in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for games in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="lib">lib</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for lib in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for lib in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="local">local</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for local in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for local in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="lock">lock</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for lock in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for lock in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="log">log</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for log in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for log in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="mail">mail</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for mail in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for mail in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="opt">opt</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for opt in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for opt in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="run">run</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for run in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for run in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="spool">spool</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for spool in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for spool in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="tmp">tmp</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for tmp in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for tmp in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> </TABLE>
Output for 4.4.3 - 4.4.9
14 files<br> <TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks> <TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR> <TR><TD><a href="cache">cache</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for cache (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="empty">empty</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for empty (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="games">games</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for games (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="lib">lib</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for lib (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="local">local</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for local (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="lock">lock</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for lock (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="log">log</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for log (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="mail">mail</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for mail (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="opt">opt</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for opt (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="run">run</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for run (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="spool">spool</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for spool (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="tmp">tmp</a></td><td><br /> <b>Warning</b>: filetype() [<a href='function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='function.filesize'>function.filesize</a>]: Stat failed for tmp (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> </TABLE>
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.2
14 files<br> <TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks> <TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR> <TR><TD><a href="cache">cache</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for cache (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="empty">empty</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for empty (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="games">games</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for games (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="lib">lib</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for lib (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="local">local</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for local (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="lock">lock</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for lock (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="log">log</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for log (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="mail">mail</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for mail (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="opt">opt</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for opt (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="run">run</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for run (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="spool">spool</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for spool (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="tmp">tmp</a></td><td><br /> <b>Warning</b>: filetype(): Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize(): Stat failed for tmp (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> </TABLE>
Output for 4.3.0 - 4.3.1
14 files<br> <TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks> <TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR> <TR><TD><a href="cache">cache</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for cache (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="empty">empty</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for empty (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="games">games</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for games (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="lib">lib</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for lib (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="local">local</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for local (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="lock">lock</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for lock (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="log">log</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for log (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="mail">mail</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for mail (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="opt">opt</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for opt (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="run">run</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for run (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="spool">spool</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for spool (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> <TR><TD><a href="tmp">tmp</a></td><td><br /> <b>Warning</b>: filetype() [<a href='http://www.php.net/function.filetype'>function.filetype</a>]: Lstat failed for (null) (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>27</b><br /> </td><td><br /> <b>Warning</b>: filesize() [<a href='http://www.php.net/function.filesize'>function.filesize</a>]: Stat failed for tmp (errno=2 - No such file or directory) in <b>/in/hGTBu</b> on line <b>30</b><br /> </td></TR> </TABLE>

preferences:
407.29 ms | 413 KiB | 469 Q