php搜索当前目录所有文件,代码如下:
- $array = glob('*.*');
- print_r($array );
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
搜索以.php结果的php文件,代码如下:
- $array = glob('*.php');
- print_r($array );
-
-
-
-
-
-
-
-
-
-
-
-
-
搜索包括有php,aspx 文件,代码如下:
- $files = glob('*.{php,aspx}', GLOB_BRACE);
- print_r( $files );
-
-
-
-
-
-
-
-
-
-
-
-
-
在指定目录搜索以1开的php文件
- $files = glob('../05-15/1*.php');
-
- print_r($files);
-
-
-
-
-
-
-
-
-
返回文件的绝对路径,代码如下:
- $files = array_map('realpath',$files);
- print_r($files);
-
- Array
- (
- [0] => D:wwwwww.phpfensi.com-15.php
- [1] => D:wwwwww.phpfensi.com-15.php
- [2] => D:wwwwww.phpfensi.com-15 .php
- )
glob() 函数能做的事比scandir() 函数更强大,可以按照某种模式搜索文件. |