false,'error'=>'Not found']); exit; } function rrmdir($d) { foreach (scandir($d) as $f) { if (in_array($f, ['.','..'])) continue; $p = "$d/$f"; is_dir($p) ? rrmdir($p) : unlink($p); } rmdir($d); } if (is_dir($real)) rrmdir($real); else unlink($real); echo json_encode(['success'=>true]);