midif2.php
$d=dir("./dir"); //Get the dir directory object
$i="0";
while($entry=$d ->read()){
$i=$i+1;
if($i>2){ //The purpose of greater than 2 is to remove the "." of the current directory and represent the previous directory ".."
$wq[]=$entry; //Put the directory details into the $wq array
}
}
$d->close(); //Close
?>
List < ;/body>
[The copyright of this article is jointly owned by the author and Oso.com. If you need to reprint, please indicate the author and source]
http://www.bkjia.com/PHPjc/316705.html
www.bkjia.com
truehttp: //www.bkjia.com/PHPjc/316705.htmlTechArticlemidif2.php ? $d=dir(./dir);//Get dir directory object $i=0 ; while($entry=$d-read()){ $i=$i+1; if($i2){//The purpose of greater than 2 is to remove the . of the current directory, and the .. representing the previous directory. $ wq[]=$e...