PHP - File Handling
What will be the output of the following PHP code?
$dir = 'testdir';
if (is_dir($dir)) {
echo 'Directory exists';
} else {
echo 'Directory does not exist';
}Assuming testdir exists as a directory.