php读取目录、文件并显示的函数_PHP教程
程序员文章站
2024-01-28 10:57:22
...
读取指定的目录,并显示其中的文件个数和文件名。
/*
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
?>
上一篇: MySQL 重装MySQL后, mysql服务无法启动_MySQL
下一篇: php代理采集代码
推荐阅读
-
php自定义函数之递归删除文件及目录_PHP教程
-
PHP 删除文件与文件夹操作 unlink()与rmdir()这两个函数的使用_PHP教程
-
PHP获取文件夹内所有文件包括子目录文件的名称或路径,_PHP教程
-
finfo_file函数获取文件mime值验证出错的解决方法_PHP教程
-
php上传文件并显示上传进度的方法_PHP
-
Ubuntu中启用php的mail()函数并解决发送邮件速度慢问题_PHP教程
-
php读取目录、文件并显示的函数
-
PHP递归遍历指定目录的文件并统计文件数量的方法_PHP
-
一个取得文件扩展名的函数(不过函数名叫做取得FILETYPE呢!呵呵!)_PHP教程
-
PHP文件读取功能的应用实例_PHP教程