I am trying to find a way of deleting a folder which is located inside another (eg accounts/username - i want to delete username but it has 2 folders inside (1 names images and other named videos) - with files inside.
I have tried
$accounts = "accounts";
$uploaddir = "$username";
$image_dir = 'image';
$video_dir = 'video';
$image_folder = "$accounts$username$image_dir/";
$uploadfile = $image_folder . basename($_FILES['image']['name']);
$dir = "$accounts/$uploaddir";
array_map('unlink', glob($dir."/*"));
rmdir($dir);