The rmdir() function fails if the folder contains any files. I can loop through all of the the files in the directory with something like this:
rmdir()
rrmdir() -- recursively delete directories:
rrmdir()
function rrmdir($dir) { foreach(glob($dir . '/*') as $file) { if(is_dir($file)) rrmdir($file); else unlink($file); } rmdir($dir); }