1, 'message'=>'The filename is empty.' ))); } // Check if the filename exist if (!Sanitize::pathFile(PATH_UPLOADS.$filename)) { exit (json_encode(array( 'status'=>1, 'message'=>'The file does not exist.' ))); } // Delete the file Filesystem::rmfile(PATH_UPLOADS.$filename); // Check if the file has a thumbnail if (Sanitize::pathFile(PATH_UPLOADS_THUMBNAILS.$filename)) { // Delete the file Filesystem::rmfile(PATH_UPLOADS_THUMBNAILS.$filename); } exit (json_encode(array( 'status'=>0, 'message'=>'File deleted.' ))); ?>