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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T15:45:32+00:00 2026-06-12T15:45:32+00:00

I have folder, his name is 1, in this folder is 2 folders: big_images

  • 0

I have folder, his name is “1”, in this folder is 2 folders: “big_images” and “small_images”

I want delete folder “1” and his content, this is code:

function removeFullDir ($dir) {
$content = glob($dir."/*");

foreach ($content as $file) {
    if (is_dir($file)) {
        removeFullDir ($file);
    }
    else {
        unlink($file);
    }
}
    rmdir($dir);
}

removeFullDir("1");

in localhost (XAMPP server, php version 5.4.4) this code works good. in remote server this code also works, but returns warning:

Warning: Invalid argument supplied for foreach()

in remote server, php version is 5.2.42

please tell me, why obtain I this warning?

  • 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-12T15:45:33+00:00Added an answer on June 12, 2026 at 3:45 pm

    This happens because glob does not return an array, which means that based on the documentation it must return false. This can happen when there is an error, but it can also happen when the directory happens to be empty:

    Returns an array containing the matched files/directories, an empty
    array if no file matched or FALSE on error.

    Note: On some systems it is impossible to distinguish between empty match and an error.

    To prevent the notice just guard against it:

    function removeFullDir ($dir) {
        $content = glob($dir."/*");
        if(!$content) {
            return;
        }
    
        // ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have folder home/admin. In this folder there is index.php. When i access to
I have folder on which i want to apply security like the current user
I have a folder with scripts with a name pattern of UPDATE[x.y.z] where x.y.z
I have a folder named img and i want to use js to look
I have this and this only saves the last folder used when the user
I have folder structure and I would like to create JSON objects based on
I have a folder with files and sub folder in it and I have
I have a folder with some dotfiles I would like to make symlinks for.
I have a folder with a few background images (one.jpg, two.jpg, three.jpg) , and
I have a folder structure as follows: mydomain.example ->Folder-A ->Folder-B I have a string

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.