Blogger Information
Blog 60
fans 1
comment 1
visits 64399
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php利用foreach和while来目录遍历的方法_2018年8月28日
PHP学习
Original
1005 people have browsed it

实例

<?php
//传统操作文件目录的三个步骤打开,读取,关闭
//opendir()打开目录,readdir()读取目录,closedir()关闭目录。

$dir = opendir('.') or die('打开失败');//打开文件夹,.就是表示当前目录..两个点就是返回上一个目录
while (false != ($file = readdir($dir))) {//判断读取的文件为真,就执行下面语句
    if ($file != '.' && $file !="..") {//读取判断是不是当前目录
        print $file."<br>";//输出读取到的文件目录
    }
}
closedir($dir);//关闭文件



//scandir()扫描文件目录
$scan_dir = scandir('.');//扫描目录下面的文件
echo '<pre>';
print_r($scan_dir) ;//输出扫描到的目录,输出的是一个数组,所以下面利用遍利的方式,将目录遍历出来。
foreach ($scan_dir as $scan1) { //将scan_dir交给$scan1来处理
    if ($scan1 != '.' && $scan1 != '..') {//判断目录是不是为当前上当,如果是执行下面的语句,如果不是就不执行
        echo print_r($scan1).'<br>';//输出遍历出来的目录
    }
}

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post