i've been trying to delete folder and the files in it. The code return no error but the folder is not removed. I am sure the path is correct. What do i miss ?
function delete_avatar($id) {
$dir = base_url()."assets/uploads/Avatar/".$id;
foreach(glob($dir . '/*') as $file) {
if(is_dir($file)) rrmdir($file); else unlink($file);
} rmdir($dir);
}