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

The Archive Base Latest Questions

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

I am currently using php to open a csv file, check down for a

  • 0

I am currently using php to open a csv file, check down for a cell containing particular content and using if-else to gain spicific information. However, I need to check if a cell contains PART of some information.

e.g.

current code:

$error_handle = fopen("$reportUrl", "r");
while (!feof($error_handle) )
{
    $line_of_text = fgetcsv($error_handle, 1024);
    if($line_of_text[0] !== "")
        {
            $countErrors++;
        }
}
fclose($error_handle);

code I want:

$error_handle = fopen("$reportUrl", "r");
while (!feof($error_handle) )
{
    $line_of_text = fgetcsv($error_handle, 1024);
    if($line_of_text[4] == "$date *")
        {
            $countErrors++;
        }
}
fclose($error_handle);

the ‘*’ is representing a time that will be different for each line of text so can’t be used but is part of the same cell. How do I select the cells with the same date but different times?

FYI, the date format would usually be ’15/01/2013 12:06pm’

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

    Use the strpos function:

    if(strpos($line_of_text[4], "$date ") ===0) { found }
    

    Think I’ve got it:

    I’m using the following:

            while (!feof($error_handle) )
            {
                $line_of_text = fgetcsv($error_handle, 1024);
                if(strpos($line_of_text[4], $date) !== false)
                    {
                        $countErrors++;
                    }
            }
        fclose($error_handle);
    

    which seems to be working

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

Sidebar

Related Questions

I am currently using fgetcsv in php to get rows in CSV file. For
I'm happy with the php code I'm currently using to display the file contents
I am currently developing a PUBLIC and OPEN SOURCE software using PHP/MySQL. I have
I'm building a simple php app using OOP that creates a CSV file based
I am programmatically exporting data (using PHP 5.2) into a .csv test file. Example
I'm currently using PHP, JAVASCRIPT, MYSQL, XHTML, CSS to develop my site. Note that
I am currently using PHP/MySQL and the jQuery timeago plugin. Basically, I need to
I'm currently using the following PHP code: // Get all subordinates $subords = array();
I am currently using jQuery to load a variable php layout depending on the
I'm currently designing a web application using php, javascript, and MySQL. I'm considering two

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.