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 6938701
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T12:31:33+00:00 2026-05-27T12:31:33+00:00

I have code that runs once daily and fputs() appends a daily log entry

  • 0

I have code that runs once daily and fputs() appends a daily log entry to a flat file in the format:

yyyy-mm-dd|log entry

This file is then displayed by a web page that fgets() and displays all records from oldest to newest.

What I need to do is change this write/read process so that:

A. Only the x most recent records are kept in the log file.

B. The output order is reversed with the most recent log entry displayed first.

If the order of the log file can be reversed with the write operation, then the read operation can remain unchanged.

If there is a better way to do this other than fputs and fgets, I am open to it.

Thanks

  • 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-27T12:31:34+00:00Added an answer on May 27, 2026 at 12:31 pm

    The best way to do this, I think (although it is not the most memory efficient way) is this:

    function writeLogEntry ($filePath, $str, $maxRecords) {
      $fileData = file($filePath); // Get file contents as array
      array_unshift($fileData, $str); // Add the log entry to the beginning
      if (count($fileData) > $maxRecords) { // Strip old records off
        $file = array_slice($fileData, 0, $maxRecords);
      }
      file_put_contents($filePath, $fileData); // Write file again
    }
    
    $logEntry = "yyyy-mm-dd|Something happened\n";
    
    writeLogEntry('/path/to/file', $logEntry, 1000);
    

    Using this approach, the file is kept in the order that you want it (newest first). However, if this file might be written to by more than one process at a time, you would need to implement some form of locking to avoid losing data.

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

Sidebar

Related Questions

below i have a code that runs in most of my simple programs ..
I have a simple jQuery code that runs on a web page that has
I have the following SQL code that runs against a Change Request database. Each
I have some code that compiles and runs on MSVC++ but will not compile
I have to call some code in a SharePoint site that runs under the
I have code that looks like this: template<class T> class list { public: class
I have code that I want to look like this: List<Type> Os; ... foreach
I have a cron job that runs every minute. Every once in a while
I have a php file that runs as a cron job. That file gets
My problem is this: I have a C/C++ app that runs under Linux, and

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.