PHP - File Handling
What will be the output of the following PHP code?
$dir = 'myfolder';
if (is_dir($dir)) {
$handle = opendir($dir);
while (($file = readdir($handle)) !== false) {
echo $file . ' ';
}
closedir($handle);
} else {
echo 'Directory not found';
}