本文实例讲述了php简单获取目录列表的方法。分享给大家供大家参考。具体实现方法如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
function list_directory_content( $dir ){
if ( is_dir ( $dir )){
if ( $handle = opendir( $dir )){
while (( $file = readdir( $handle )) !== false){
if ( $file != '.' && $file != '..' && $file != '.htaccess' ){
echo '<a target="_blank" href="' . $dir . $file . '">'
. $file . '</a><br>' . "\n" ;
}
}
closedir ( $handle );
}
}
}
?>
|
希望本文所述对大家的php程序设计有所帮助。