2016-08-08 144 views
-3

我有一個文件夾命名的類別裏面有很多的文件夾。我需要把這些名稱和插入數據庫。我如何閱讀文件夾名稱?

是否有任何功能或方式,需要文件夾名稱與PHP?

+0

[readdir](http://php.net/manual/en/function.readdir.php)是你的朋友 –

回答

0

只是一個簡單的RTM會得到你:readdir()

<?php 

if ($handle = opendir('/path/to/files')) { 
    echo "Directory handle: $handle\n"; 
    echo "Entries:\n"; 

    /* This is the correct way to loop over the directory. */ 
    while (false !== ($entry = readdir($handle))) { 
     echo "$entry\n"; 
    } 

    /* This is the WRONG way to loop over the directory. */ 
    while ($entry = readdir($handle)) { 
     echo "$entry\n"; 
    } 

    closedir($handle); 
} 
?> 

請務必仔細閱讀了陷阱的文檔!

0

你可以得到所有的文件夾名稱與此代碼

<?php 
    $dirs = array_filter(glob('*'), 'is_dir'); 
    print_r($dirs); 
?> 
+0

我沒試過這個 – kjavelin

+0

試試這個代碼,你會得到數組中的所有目錄名。 –