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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:35:18+00:00 2026-05-25T23:35:18+00:00

So I have a php script, I want to read in a file line

  • 0

So I have a php script, I want to read in a file line by line, each line only contains one id. I want to select using sql for each id in the file, then print the result for each selection in the same file.

so far i have:

    while (!feof($file))
{
    // Get the current line that the file is reading
    $currentLine = fgets($file) ;
    //explodes integers by amount of sequential spaces
    //$currentLine = preg_split('/[\s,]+/', $currentLine);
    echo $currentLine;  //this echo statement prints each line correctly
    selectQuery($currentLine) ;


}   

fclose($file) ;

as a test so far i only have

 function selectQuery($currentLine){
     echo $currentLine;  //this is undefined?
 }
  • 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-25T23:35:18+00:00Added an answer on May 25, 2026 at 11:35 pm

    The result of fgets is never undefined. However, your approach is way too low-level. Use file and array_filter:

    $results = array_filter(file('input.filename'), function(line) {
      return strpos($line, '4') !== false; // Add filter here
    });
    var_export($results); // Do something with the results here
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a PHP script which generates an SQL file containing all tables
I have a php script that reads one file through http(the file is on
As far as I have read, PHP can only get the file listing from
I have a php script that is reading a file in (file_get_contents). I want
I want to have a PHP script send a XML formatted string to another
I have a php script that is running in CLI and I want to
I have a html_headers.inc.php script that I want to include in every script on
I have an multi-dimensional array that I want to send to a PHP script
I have a PHP script that I don't want anyone to be able to
I have a large amount of data to move using two PHP scripts: one

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.