Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7403153
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T04:58:57+00:00 2026-05-29T04:58:57+00:00

I have asked the same question before and I found this solution : if

  • 0

I have asked the same question before and I found this solution :

if ($handle = opendir('/path/to/your/folder')) 
{
$files = array();
while (false !== ($file = readdir($handle))) 
{
    if (!is_dir($file))
    {
        // You'll want to check the return value here rather than just blindly adding to the array
        $files[$file] = filemtime($file);
    }
}

// Now sort by timestamp (just an integer) from oldest to newest
asort($files, SORT_NUMERIC);

// Loop over all but the 5 newest files and delete them
// Only need the array keys (filenames) since we don't care about timestamps now as the array will be in order
$files = array_keys($files);
for ($i = 0; $i < (count($files) - 5); $i++)
{
    // You'll probably want to check the return value of this too
    unlink($files[$i]);
}
}

And I have edited to fit my needs like this:

public function cleanup() {
    $files = glob("$this->location/*.sql");
    $count = count($files);
    if($count >= $this->maxbackups) {
        $timestamps = array();
        foreach( $files as $value) {
            $timestamps[$value] = filemtime($value);
        }
        asort($timestamps, SORT_NUMERIC);
        $timestamps = array_keys($timestamps);
        for ($i = 0; $i < (count($timestamps) - 1); $i++) {
            unlink($timestamps[$i]);
        }
            return $this->message->error(false,'Backups successfuly cleaned');
        } else {
            return $this->message->error(true,'Backups could not be cleaned');
        }
}

But the problem is that it deletes all files but the first, not the last created, why is that ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T04:58:58+00:00Added an answer on May 29, 2026 at 4:58 am

    Use for ($i = 1; $i < (count($timestamps)); $i++). That could make it work.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have asked this before but I didn't get the question right so the
I have asked this question before and the problem was half solved in the
May be it's the same question i have i asked before but the issue
I have looked around here to see if somebody has asked this question before
I have asked this question before - but I have spent some time thinking
I asked the almost the same question before also, but i have not yet
This question was asked before but the solution is not applicable in my case.
i have asked this question before but no answer was there. so asking again.
Its not the same question I asked before(with the ^^), as this a different
Variations of this question have been asked before, but it seems like the issue

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.