php读取目录、文件并显示的函数
程序员文章站
2024-02-12 12:19:46
...
读取指定的目录,并显示其中的文件个数和文件名。
/*
This script read the filenames from a specified directory and returns them in an array.
*/
Function searchdir($basedir)
{
global $filelisting, $number; //defines the two variables as global so they can be accessed
unset($filelisting); //kills $filelisting in case it have been used earlier in the
unset($number); //same as above
$handle=opendir($basedir);
while ($file = readdir($handle)) {
if ($file=="." or $file=="..") {
} else {
$filelisting[]="$basedir$file";
};
};
$number=sizeof($filelisting); //取得文件个数
};
searchdir("."); //runs the function to search the current directory
echo $filelisting[1]; //echos the second value in the array
echo $number; //echos the size of the array
?>
/*
This script read the filenames from a specified directory and returns them in an array.
*/
Function searchdir($basedir)
{
global $filelisting, $number; //defines the two variables as global so they can be accessed
unset($filelisting); //kills $filelisting in case it have been used earlier in the
unset($number); //same as above
$handle=opendir($basedir);
while ($file = readdir($handle)) {
if ($file=="." or $file=="..") {
} else {
$filelisting[]="$basedir$file";
};
};
$number=sizeof($filelisting); //取得文件个数
};
searchdir("."); //runs the function to search the current directory
echo $filelisting[1]; //echos the second value in the array
echo $number; //echos the size of the array
?>
上一篇: JS实现的对象去重功能示例
下一篇: php递归问题
推荐阅读
-
php读取目录、文件并显示的函数
-
PHP递归遍历指定目录的文件并统计文件数量的方法_PHP
-
PHP 获取目录下的图片并随机显示的代码_PHP教程
-
php读取目录及子目录下所有文件名的方法_PHP
-
php遍历目录,生成目录下每个文件的md5值并写入到结果文件中_PHP教程
-
php读取目录及子目录下所有文件名的方法,
-
用PHP封装的一个类,显示/删除文件目录下的所有文件及空目录,同时可以删除目录或文件名为0的目录及文件
-
php使用glob函数快速查询指定目录文件的方法
-
fgetcsv函数不能读取csv文件中文字符串的解决方法_PHP教程
-
php使用simplexml_load_file加载XML文件并显示XML的方法