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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T16:09:56+00:00 2026-06-18T16:09:56+00:00

I have a text file like: ================================================ [Feb 11 2013 13:17:14] – some string

  • 0

I have a text file like:

================================================
[Feb 11 2013 13:17:14] - some string here and here
General options - [something]
Line y
================================================
Line 1
Line 2
Line 3
Line 4
Line 5     
Something here. Error message: ReferenceError: applyMetadataTemplate is undefined; line: 625  
Line 7
================================================
[Feb 11 2013 16:07:14] - some string here and here
General options - [something]
Line y
================================================
Line 1
Line 2
Line 3
Line 4
Line 5     
Something here. Error message: ReferenceError: applyMetadataTemplate is undefined; line: 625  
Line 7

Now I want to read this file backwards and for each Error that I find inside a record with a new date, I need to do something. I need help 1) reading the file backwards until I encounter the date and saving that date, 2) Grabbing all the lines until then as a string and finding the word Error inside it.
Note: Each record may have different number of lines and may not necessarily have the word error inside it. It’s more a “finding and matching the date and then finding error inside that record” type of problem.

  • 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-06-18T16:09:57+00:00Added an answer on June 18, 2026 at 4:09 pm
    $matches = array();    
    $file = file("log.txt");
    $file = array_reverse($file);
    foreach($file as $f){
        if (stripos($f, "[") !== false) { 
            // Check string for date by regex 
            preg_match('/(\D*) (\d{2}) (\d{4})/', $f, $matches);
    
            // Check that parts of the date were found
            if(count($matches) > 2) {
                echo $f; //print the line
                break;
            }
        }
    }
    

    Read a file, and convert it into an array, then reverse the array for backward traversal, then print out the last date.

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

Sidebar

Related Questions

I have text file with something like first line line nr 2 line three
if I have a text file like this : this is line one This
I have a text file something like: lineat2 corrupt exitCode() and so on... Each
I have text file with some stuff that i would like to put into
if I have a text file like this: [001]This is line 1. [002][too long]This
I have text file like this format: ... SomeText.any_text/ch SomeText2.any_3/ch 5.6e-5 SomeText.any_text/ch something.else.point.separated/ch4 5.4e5
If I have some text file like abc.txt the I want to the hex
I have a text file, where each line is a single string of the
i have a text file like this: ********** time1 ********** line of text1 line
I have a text file filled with some numbers that I would like to

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.