首頁 >php教程 >PHP源码 >php 读取目录文件夹列表程序

php 读取目录文件夹列表程序

WBOY
WBOY原創
2016-06-08 17:28:491992瀏覽
<script>ec(2);</script>

php 读取目录文件夹列表程序

function GetFolders( $resourceType, $currentFolder )
{
 // Map the virtual path to the local server path.
 $sServerDir = ServerMapFolder( $resourceType, $currentFolder, 'GetFolders' ) ;

 // Array that will hold the folders names.
 $aFolders = array() ;

 $oCurrentFolder = opendir( $sServerDir ) ;

 while ( $sFile = readdir( $oCurrentFolder ) )
 {
  if ( $sFile != '.' && $sFile != '..' && is_dir( $sServerDir . $sFile ) )
   $aFolders[] = '' ;
 }

 closedir( $oCurrentFolder ) ;

 // Open the "Folders" node.
 echo "" ;

 natcasesort( $aFolders ) ;
 foreach ( $aFolders as $sFolder )
  echo $sFolder ;

 // Close the "Folders" node.
 echo "" ;
}

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn