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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T12:44:25+00:00 2026-05-19T12:44:25+00:00

I have a script that opens a directory, checks if the folders matches an

  • 0

I have a script that opens a directory, checks if the folders matches an array, and then opens them.
In the directory there is a list of folders like “apache2-50”, but when the script opens that folder, it only displays the .DS_Store file. Here is the output:

This-is-not-a-MacBook:backend code archangel$ php -f frolic.php "/Users/archangel/Desktop/Httpbench Files/results"
Test Found apache2 in directory /Users/archangel/Desktop/Httpbench Files/results/apache2-50
--/Users/archangel/Desktop/Httpbench Files/results/apache2-50/.DS_Store

But here is the directory listing:

This-is-not-a-MacBook:apache2-50 archangel$ ls
0   1   2

Now what I am trying to figure out why my php script is not showing those folders. When I change the folder “0” to “3” it works:

This-is-not-a-MacBook:apache2-50 archangel$ ls
1   2   3

This-is-not-a-MacBook:backend code archangel$ php -f frolic.php "/Users/archangel/Desktop/Httpbench Files/results"
Test Found apache2 in directory /Users/archangel/Desktop/Httpbench Files/results/apache2-50
--/Users/archangel/Desktop/Httpbench Files/results/apache2-50/.DS_Store
--/Users/archangel/Desktop/Httpbench Files/results/apache2-50/1
--/Users/archangel/Desktop/Httpbench Files/results/apache2-50/2
--/Users/archangel/Desktop/Httpbench Files/results/apache2-50/3

Here is the code that I am running:

#!/bin/php

//...

$dir = opendir($argv[1]);
//Opened the directory;

while($file = readdir($dir)){
//Loops through all the files/directories in our directory;
    if($file!="." && $file != ".."){
        $f = explode("-", $file);
        if(in_array($f[0], $servers) and in_array($f[1], $tests)) {
            echo "Test Found $f[0] in directory $argv[1]/$f[0]-$f[1]\n";
            $sdir = opendir("$argv[1]/$f[0]-$f[1]");
            while($sfile = readdir($sdir)){
                if($sfile!="." && $sfile != ".."){
                    echo "--$argv[1]/$f[0]-$f[1]/$sfile\n";
                }
            }
        }
    }
}

Could this be something wong with my script, or a bug in php(PHP 5.3.3)?
Thanks

  • 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-19T12:44:25+00:00Added an answer on May 19, 2026 at 12:44 pm

    This is a (very nasty) side effect of the string "0" evaluating to false in PHP. When that happens, your while loop

    while($file = readdir($dir))
    

    will break.

    This should work, because it breaks only when readdir() actually returns false:

    while(($file = readdir($dir)) !== false)
    

    (obviously, change both loops accordingly, not just the outer one.)

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

Sidebar

Related Questions

I have a Windows shell script that opens an application. I'd like to modify
I have an array that lists folders in a directory. Until now, I've been
I have a PowerShell script that checks that a certain directory is on the
I have a script that checks responses from HTTP servers using the PEAR HTTP
I have this script that I'd like to in addition save as a xls
I have a script that parses the filenames of TV episodes (show.name.s01e02.avi for example),
I have a script that retrieves objects from a remote server through an Ajax
I have a script that takes a table name and generates a control file
I have a script that renders graphs in gnuplot. The graphs all end up
I have a script that works fine on my test server (using IIS6). The

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.