摘要: //获取文件目录列表,该方法返回数组function getDir($dir) { $dirArray[]=NULL; if (false != ($handle = opendir ( $dir ))) { $i=0; while ( false !== ($file = readdir ( $handle )) ) { //去掉""."、".."以及带".xxx"后缀的文件 if ($file != "." && $file != ".."&&!st 阅读全文
posted @ 2014-03-02 20:50 代码收集-ASP。JS代码 阅读(977) 评论(0) 推荐(0)