I have a photo sharing app and I use timthumb to display the thumbnails. When a user delete a photo, I want the cached images also deleted from the timthumb's cache directory to save space. Currently I can only delete all files from cache, but it is less than ideal.
How to delete only specific files from timthumb's cache given the original image?
I came to this solution. I have to make little modifications to the
timthumb.php
file so I can include the file and instantiate the class from another file.timthumb.php:
Now I can get the cache filename for a given image and delete it. The code is not pretty, but I need to save space.
delete_cache.php: