实例
<?php /** * 传统的过程函数 opendir() readdir() closedir() * 目录扫描器 scandir() */ $file = opendir('../827') or dir('打开失败'); while(false!=($files=readdir($file))) { if($files!='.' && $files!='..') { echo nl2br($files."\n"); } } echo '<hr>'; //目录扫描器 $f = scandir('../828') or dir('打开失败'); foreach ($f as $files) { if($files!='.' && $files!='..') { echo nl2br($files."\n"); } } closedir($file);
运行实例 »
点击 "运行实例" 按钮查看在线实例
运行结果: