标签:while set type 输出 遍历目录 sed echo har highlight
<?php header(‘Content-Type: text/html; charset=utf-8‘); /** * @param 目录地址 */ function readDirs($path) { $dir_handle = openDir($path); while(false !== $file=readDir($dir_handle)) { if ($file==‘.‘ || $file==‘..‘) continue; //输出该文件 echo $file, ‘<br>‘; //判断当前是否为目录 if(is_dir($path . ‘/‘ . $file)) { //是目录 readDirs($path . ‘/‘ . $file); } } closeDir($dir_handle); } // $path = ‘./‘; // readDirs($path);
标签:while set type 输出 遍历目录 sed echo har highlight
原文地址:http://www.cnblogs.com/huodaihao/p/7189816.html