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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T17:44:29+00:00 2026-06-17T17:44:29+00:00

I am trying to search multiple matched lines from a html file and return

  • 0

I am trying to search multiple matched lines from a html file and return those lines.

If there is single match then it works. But if there are multiple matches it returns nothing.

Here is the code:

$line = getLineFromFile("abc.html", 'http://www.abc.com/');

echo $line;

function getLineFromFile($file, $string) {
    $lines = file($file);
    foreach($lines as $lineNumber => $line) {
        if(strpos($line, $string) !== false){
            return $lines[$lineNumber];
        }
    }
    return false;
}

Why isn’t it returning all the matched lines?

  • 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-17T17:44:30+00:00Added an answer on June 17, 2026 at 5:44 pm

    Once you return from a function that function call stops executing. You’ll need to store your results in an array and then return it.

    function getLineFromFile($file, $string) {
        $lines = file($file);
        $matches = array();
        foreach($lines as $lineNumber => $line) {
            if(strpos($line, $string) !== false){
                $matches[] = $lines[$lineNumber];
            }
        }
        return $matches;
    }
    

    Just make sure you check for an empty array and not false when checking the results of this function.

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

Sidebar

Related Questions

I'm trying to search multiple fields (zc_city, zc_zip and zc_state), matching against a single
I am trying to download images from multiple urls from a search in google
I am trying to select multiple rows from the database and then separate the
I am trying to search for multiple strings within a larger string and if
I'm trying to make a search feature that will search multiple columns to find
While trying to search with id sorting (and paginating) im getting from the log:
I'm trying to search through many documents and find all instances where an html
I am trying to match two string variables, and would like to catch multiple
I'm trying to search multiple fields. Something like this: [NSPredicate predicateWithFormat:@(name title contains[cd] %@)
I'm trying to implement an algorithm to search multiple XML files for a certain

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.