$dir = __DIR__ . '/pending'; $files = glob($dir . '/*.json'); $now = time(); foreach ($files as $file) { $data = json_decode(file_get_contents($file), true); if (isset($data['timestamp']) && $now - $data['timestamp'] > 86400) { unlink($file); } }