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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T15:31:57+00:00 2026-06-07T15:31:57+00:00

I dont know where exactly I am going wrong here. I have narrowed the

  • 0

I dont know where exactly I am going wrong here. I have narrowed the problem down to $file not being set to anything and I do not know where I have gone wrong. Please help 🙂

Code: ($_GET[‘unit’] is 1)

                $filepathhalf = "http://sureclean.netai.net/data/";
                $date = date("Ymd");
                $unitnum = $_GET['unit'];
                $ext = ".txt";
                $filepath = $filepathhalf.$unitnum.$date.$ext;
                $bool = file_exists($filepath);
                if($bool = true)
                {
                    $fh = fopen($filepath, 'r');
                    $file = fread($fh, 4);
                    fclose($fh);
                }
                else{};
                $file = strval($file);
                echo $file;

yourwebsite/data/120120714.txt:

true
  • 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-07T15:31:58+00:00Added an answer on June 7, 2026 at 3:31 pm

    file_exists

    The function called file_exists will only work on local files, you cannot check wether a resource on the web (over HTTP) is available with this function.

    This together with the fact that you are using assignment instead of comparison in the below snippet provides the wrong behavior of your script.

    if($bool = true) 
      { ... }
    

    fopen

    fopen is not always allowed to read from external sources, but are you sure this is required? if your file is indeed local please don’t try reading it over the net when you could access it in a more simple manner.


    fread

    The 2nd argument to fread specifies how many bytes to read as maximum, where you have currently specified 4.

    Currently you are trying to read 4 bytes from the the filehandle stored in $fh, and you are indeed reading these four bytes.

    $file will contain only spaces since that is what is being stored in the first four bytes of your file, if you have indented the contents of yourwebsite/data/120120714.txt in your question correctly – that is.


    How would I read the whole file at once?

    PHP provides a function called file_get_contents that will read the entire file and return it as a string, though if you are really looking for a way of reading your file using fread you should use something as the below:

    $file_data = fread ($fh, filesize ($filename));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I dont really know how to explain exactly what function i need but ill
I have an issue with my portlet and I don't know exactly how to
I don't exactly know how it came to be this way, but here's the
I just spent about four hours tracking down this problem. I know what is
I might be wrong about what is actually happening here but i have 3
I don't know exactly how to put this question. I want to create a
I don't know exactly when, but assume with upgrade from Snow Leopard to Lion
I've noticed, that sometimes (I don't know exactly when and why) system recreates my
I'm trying to understand some MATLAB source codes. I don't know exactly which one
I used this selector in a function and I don't even know exactly what

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.