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

  • Home
  • SEARCH
  • 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 7781785
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T19:20:20+00:00 2026-06-01T19:20:20+00:00

I am getting a response $str by using cURL. $str is in html, comprising

  • 0

I am getting a response $str by using cURL. $str is in html, comprising of always total 327 lines. I want to fetch date from exactly 127th line, which originally is

<b>Last Updated On:</b>17-Dec-2011 11:33:41 UTC<br><br>

To try to reduce the memory used by $str, immidiatly after cURl, i do

$str = strip_tags($str);

Then, to fetch the complete line,

preg_match("/^Last Updated On……………………./m", $str, $line);

$lastupdate = $line[0];

Then, to remove the extra text,

$lastupdate = str_replace("Last Updated On:", "", $lastupdate);

Now I think that this preg_match statement is not the most efficient one. It is using too many dots and there must be something like

LookFor = Last Updated On:

If you see LookFor, get next 25 characters.

Am I using correct preg_match syntex? At the moment it is working, and giving me desired result, but I dont know how it is working.

Please suggest me the correct/efficient equivalent of this preg match line.

Also, how can I tell PHP to jump to directly 127th line, instead of going through all the first 126 lines. All lines having [CR][LF] endings.

P.S.

  • There will be only next 25 characters I need.
  • The line I need will always be 127th
  • I am using the retrieved date just as a string of text; no calculations, only to store in a .csv file. But would really be happy if instead of text, I could get it in proper date format. Right now it is just a string of text.
  • 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-01T19:20:21+00:00Added an answer on June 1, 2026 at 7:20 pm

    Try this :

    <?php
    
        // get the lines in an array
        $lines = explode("\n",$str);
    
        // get the 127th line
        $line = $lines[126];
    
        // get the date
        preg_match('/<\/b>(.+)<br><br>/', $line, $matches);
    
        $date = $matches[1];
    
        echo $date;
    
    ?>
    

    Output :

    17-Dec-2011 11:33:41 UTC
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using CURL for get response from an web api. I am getting
I'm trying to POST a http request using ajax, but getting a response from
I am getting json data as a response back from the server. I want
I'm getting a response from a server using boost::asio. The result is stored in
I'm getting the following (str) back from Disqus, JSON expected: ?({code: 0, response: {username:
I am getting response from web service in xml format and data are inside
i'm getting response 503 from Facebook linter while my website is accessible, what went
I am getting JSON response from the server..Inside that JSON string i am having
I'm having trouble getting a response from my php jquery / json / ajax.
WebClient.DownloadStringAsync does cache the server response. After once getting a response from the server

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.