Skip to content

Instantly share code, notes, and snippets.

View Medenor's full-sized avatar

medenor Medenor

View GitHub Profile
@Medenor
Medenor / delete_older_than.php
Last active May 24, 2023 21:16 — forked from tdebatty/delete_older_than.php
A simple PHP function to delete files older than a given age. **Modified to focus deletion on specific file extension**
<?php
/**
* A simple function that uses mtime to delete files older than a given age (in seconds)
* Very handy to rotate backup or log files, for example...
*
* $dir String whhere the files are
* $max_age Int in seconds
* return String[] the list of deleted files
*/