Do you get two more pictures at a time?

Source: Internet
Author: User

Folder inside just a picture each time is more than two picture pictures show not come out but look at those two pictures src is empty is the following image of SRC This is why?

$dir = "upload2/";     if (is_dir($dir)){        if ($dh = opendir($dir)){        while (($file = readdir($dh))!= false){            $filePath = $dir.$file;            echo "";        }        closedir($dh);        }    }

Reply content:

Folder inside just a picture each time is more than two picture pictures show not come out but look at those two pictures src is empty is the following image of SRC This is why?

$dir = "upload2/";     if (is_dir($dir)){        if ($dh = opendir($dir)){        while (($file = readdir($dh))!= false){            $filePath = $dir.$file;            echo "";        }        closedir($dh);        }    }

The following code is extracted from the official reference as a solution:


  
   

Http://php.net/manual/en/func ...

Final form:

$dir = "upload2/"; if (is_dir($dir)){    if ($dh = opendir($dir)){    while (($file = readdir($dh))!= false){        if ($file != "." && $file != "..") {            $filePath = $dir.$file;            echo "";        }    }    closedir($dh);    }}

. Represents the current directory
.. represent the parent directory
You can determine whether the directory is in front of the output.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.