使用PHP函数scandir排除特定目录
发布:smiling 来源: PHP粉丝网 添加日期:2021-02-16 08:58:52 浏览: 评论:0
scandir()函数返回一个数组,其中包含指定路径中的文件和目录。这篇文章主要介绍了使用PHP函数scandir排除特定目录,需要的朋友可以参考下
scandir()函数返回一个数组,其中包含指定路径中的文件和目录。如下所示:
- <?php
- print_r(scandir('test_directory'));
- ?>
输出:
- Array
- (
- [0]=>.
- [1]=>..
- [2]=>1.txt
- [3]=>2.txt
- )
大部分情况只需要该目录的文件列表数组,如下:
- Array
- (
- [0]=>1.txt
- [1]=>2.txt
- )
一般是通过排除“.”或者“..”的数组项解决的:
- <?php
- functionfind_all_files($dir)
- {
- $root = scandir($dir);
- foreach($rootas$value)
- {
- if($value === '.' || $value === '..'){
- continue;
- }
- if(is_file("$dir/$value")){
- $result[] = "$dir/$value";
- continue;
- }
- foreach(find_all_files("$dir/$value")as$value)
- {
- $result[] = $value;
- }
- }
- return$result;
- }
- ?>
另外一种方法,利用array_diff函数,剔除scandir函数执行得到的数组:
- <?php
- $directory='/path/to/my/directory';
- $scanned_directory=array_diff(scandir($directory),array('..','.'));
- ?>
通常情况代码管理会产生.svn文件,或者限制目录访问权限的.htaccess等文件。所以通过array_diff函数来过滤会更方便。
Tags: scandir
相关文章
- ·php使用scandir()函数扫描指定目录下所有文件示例(2021-11-25)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)