3v4l.org

run code in 300+ PHP versions simultaneously
<?php function ls($path = '.') { $d = opendir($path); while ($file = readdir($d)) { if (is_dir(($path == '.' ? "/" : $path).$file)) ls(($path == '.' ? "/" : $path).$file); echo $file."\n"; } closedir($d); }

preferences:
42.69 ms | 402 KiB | 5 Q