当前位置:编程学习 > php >>

php 遍历文件夹代码

php 遍历文件夹代码
有谁知道如何使该名单上的文件夹在一个特定的目录,但是当名单,它必须能够点击一

个链接像这样人们可以重定向脚本,而不是文件夹,而是一个特殊的文件夹内。

例如:
- 清单从根文件夹的名称
- 的名字出现在链接的形式(“1的HREF =”</ 1“)在我的PHP页面
- 当我点击我会重定向到one-of-the-folder-names/index.php


<?php
// Your start directory
getDirectory('./');

function getDirectory( $path = '.', $level = 0 )
{
// Directories to ignore when listing output.
$ignore = array( '.', '..' );

// Open the directory to the handle $dh
$dh = @opendir( $path );

// Loop through the directory
while( false !== ( $file = readdir( $dh ) ) )
{
// Check that this file is not to be ignored
if( !in_array( $file, $ignore ) )
{
// Indent spacing for better view
$spaces = str_repeat( ' ', ( $level * 5 ) );

// Show directories only
if(is_dir( "$path/$file" ) )
{
// Re-call this same function but on a new directory.
// this is what makes function recursive.
echo "$spaces<a href='$path/$file/index.php'>$file</a><br />";
getDirectory( "$path/$file", ($level+1) );
}
}
}
// Close the directory handle
closedir( $dh );
}
?>

$ignore = array( '.', '..' );

使用这个脚本的规定,显示了我的一些文件夹内的文件夹名称显示谎言。什么是“代码

”我要补充数组$ignore = array( '.', '..' ); 忽略这些文件夹中显示吗?

例如:
名称上文件夹
- foldder -内的名称对文件夹


注意到,在“文件夹内”将删除的文件夹显示,而是因为我有这么多的文件夹,我想编

写一个generel事情忽略的所有文件夹
$ignore = array( '.', '..', "folder-inside" );

补充:Php教程,Php入门
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,