3v4l.org

run code in 300+ PHP versions simultaneously
<?php $allowed = array('txt', 'docx'); $zzfile = "TEST"; $filename = $zzfile; print "\nfilename:\n"; var_dump($filename); if (preg_match('#\.(.+)$#', $filename, $matches) && isset($matches[1]) && !in_array($matches[1], $allowed)) die("Extension ${matches[1]} is not allowed!"); echo "\nmatches:"; var_dump($matches); if (strrpos($filename, '.') !== false) //zwraca od pierwszej kropki od prawej do konca + end $ext = substr($filename, strrpos($filename, '.')); else $ext = ''; $newfile = "flag$ext"; print $newfile; echo "Reading <strong>$newfile</strong>..."; // Hint: the flag is in flag.php echo '<pre>'; readfile($newfile); echo '</pre>'; ?>
Output for 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /in/0f4ij on line 8 filename: string(4) "TEST" matches:array(0) { } flagReading <strong>flag</strong>...<pre> Warning: readfile(): open_basedir restriction in effect. File(flag) is not within the allowed path(s): (/tmp:/in:/etc) in /in/0f4ij on line 19 Warning: readfile(flag): Failed to open stream: Operation not permitted in /in/0f4ij on line 19 </pre>
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /in/0f4ij on line 8 filename: string(4) "TEST" matches:array(0) { } flagReading <strong>flag</strong>...<pre> Warning: readfile(): open_basedir restriction in effect. File(flag) is not within the allowed path(s): (/tmp:/in:/etc) in /in/0f4ij on line 19 Warning: readfile(flag): Failed to open stream: Operation not permitted in /in/0f4ij on line 19 </pre>
Output for 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28
filename: string(4) "TEST" matches:array(0) { } flagReading <strong>flag</strong>...<pre> Warning: readfile(): open_basedir restriction in effect. File(flag) is not within the allowed path(s): (/tmp:/in:/etc) in /in/0f4ij on line 19 Warning: readfile(flag): Failed to open stream: Operation not permitted in /in/0f4ij on line 19 </pre>
Output for 8.0.13
filename: string(4) "TEST" matches:array(0) { } flagReading <strong>flag</strong>...<pre> Warning: readfile(flag): Failed to open stream: No such file or directory in /in/0f4ij on line 19 </pre>
Output for 5.5.24 - 5.5.35, 5.6.8 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0, 7.3.32 - 7.3.33, 7.4.33
filename: string(4) "TEST" matches:array(0) { } flagReading <strong>flag</strong>...<pre> Warning: readfile(flag): failed to open stream: No such file or directory in /in/0f4ij on line 19 </pre>
Output for 7.1.26 - 7.1.33, 7.2.17 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.32
filename: string(4) "TEST" matches:array(0) { } flagReading <strong>flag</strong>...<pre> Warning: readfile(): open_basedir restriction in effect. File(flag) is not within the allowed path(s): (/tmp:/in:/etc) in /in/0f4ij on line 19 Warning: readfile(flag): failed to open stream: Operation not permitted in /in/0f4ij on line 19 </pre>
Output for 7.1.20, 7.2.6
filename: string(4) "TEST" matches:array(0) { } flagReading <strong>flag</strong>...<pre> Warning: readfile(): open_basedir restriction in effect. File(flag) is not within the allowed path(s): (/tmp:/in) in /in/0f4ij on line 19 Warning: readfile(flag): failed to open stream: Operation not permitted in /in/0f4ij on line 19 </pre>

preferences:
173.54 ms | 402 KiB | 213 Q