最新的Web开发教程
 

PHP scandir() Function

<PHP目录参考

列出图片目录内的文件和目录:

<?php
$dir = "/images/";

// Sort in ascending order - this is default
$a = scandir($dir);

// Sort in descending order
$b = scandir($dir,1);

print_r($a);
print_r($b);
?>

结果:

Array
(
[0] => .
[1] => ..
[2] => cat.gif
[3] => dog.gif
[4] => horse.gif
[5] => myimages
)
Array
(
[0] => myimages
[1] => horse.gif
[2] => dog.gif
[3] => cat.gif
[4] => ..
[5] => .
)


定义和用法

所述scandir()函数返回指定目录的文件和目录的阵列。


句法

scandir( directory,sorting_order,context );

参数 描述
directory 需要。 指定要扫描的目录
sorting_order 可选的。 指定排序顺序。 缺省排序顺序是升序字母(0) 设置为SCANDIR_SORT_DESCENDING或1排序按字母降序排列,或SCANDIR_SORT_NONE返回结果未分类
context 可选的。 指定目录句柄的环境。 Context是一组选项,可以修改流的行为

技术细节

返回值: 如果成功则返回文件和目录的数组。 FALSE的失败。 如果目录不是一个目录抛出一个E_WARNING级的错误
PHP版本: 5.0+
PHP更新日志: PHP 5.4中增加了sorting_order常数

<PHP目录参考