Tengo archivos pdf que quiero eliminar según el nombre del archivo que tienen más de un mes. Por ejemplo, si (hoy - 1 mes) es '2022-06-01.pdf', quiero eliminar archivos como '2022-04-13.pdf' y '2021-01-22.pdf'. No quiero basar los criterios de selección en la fecha real de modificación o creación.
MUESTRA (en temp/)
2019-02-01.pdf 2020-07-01.pdf 2021-03-10.pdf 2021-08-04.pdf 2022-03-30.pdf 2019-02-27.pdf 2020-07-08.pdf 2021-03-17.pdf 2021-08-11.pdf 2022-04-06.pdfHTML
oldFiles(); purgeOLD();JS
function oldFiles() { // this is ok yesterday = new Date(); yesterday.setDate(yesterday.getDate() - 30); actualYear = yesterday.getFullYear(); actualMonth = yesterday.getMonth() + 1; actualDay = yesterday.getDate(); if (actualMonth < "10") {actualMonth = "0" + actualMonth;} if (actualDay < "10") {actualDay = "0" + actualDay;} backtrack = actualYear +'-' +actualMonth +'-' +actualDay; } function purgeOLD () { // is this where the problem is ? var new_data = backtrack; var data; $.ajax({url: 'test.php', type: 'post', async: false, data: {user: new_data}}); }PHP "prueba.php"
<?php // or is this ? $result = $_GET['user']; $rdm = $result .'.pdf'; $glob = glob("temp/2???-??-??.pdf"); foreach($glob as $file) { if ($file < $rdm) { {unlink('/home/example/public_html/temp/' .$file ."'"))} } } ?>Haría esto completamente del lado del servidor.
DateTime para "hace 1 mes" $lastMonth = new DateTimeImmutable('-1 month'); $cutoff = sprintf('%s.pdf', $lastMonth->format('Ym-d')); $glob = glob("temp/2???-??-??.pdf"); foreach($glob as $file) { if (basename($file) < $cutoff) { unlink($file); } }