looking_for1
注册会员

UID 78393
精华
0
积分 112
帖子 304
金钱 112 喜悦币
威望 0
人脉 0
阅读权限 20
注册 2006-8-15 来自 hubei
状态 离线
|
文件枚举函数
<?php function &file_list($dir){ $all_files = array(); if($handle = opendir($dir)){ while(($files = readdir($handle)) !== false){ if($files != "." && $files != ".."){ $dir_next = $dir."/".$files; if(is_dir($dir_next)){ $all_files[$files] = &file_list($dir_next); //如果是文件夹则进入下一次枚举 } else{ array_push($all_files, $files); //追加文件到数组中 } } } } closedir($handle); return $all_files; } ?> [ 本帖最后由 looking_for1 于 2007-8-5 04:55 PM 编辑 ]
|  爱我的人们,我一定会爱你们 |
|