PHP - File Handling
Consider this PHP code snippet:
What is the main issue if the directory
$dir = 'testdir';
if (mkdir($dir)) {
echo 'Created';
} else {
echo 'Failed';
}
rmdir($dir);What is the main issue if the directory
testdir already exists?