Skip to content

Instantly share code, notes, and snippets.

View adrianohcampos's full-sized avatar

Adriano Campos adrianohcampos

View GitHub Profile
@tdebatty
tdebatty / delete_older_than.php
Last active November 15, 2023 07:23
A simple PHP function to delete files older than a given age. Very handy to rotate backup or log files, for example...
<?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
*/