PHP 지정된 디렉터리의 모든 하위 디렉터리 가져오기
파일 없이 특정 디렉토리의 모든 하위 디렉토리를 가져오려면 어떻게 해야 합니까?.
(현재 디렉토리) 또는..
(부모 디렉토리)를 사용하여 각 디렉토리를 함수에서 사용할 수 있습니까?
옵션 1:
와 함께 사용할 수 있습니다.GLOB_ONLYDIR
선택.
옵션 2:
또 다른 옵션은array_filter
디렉토리 리스트를 필터링 합니다.단, 다음 코드는 이름에 마침표가 있는 유효한 디렉토리를 건너뜁니다..config
.
$dirs = array_filter(glob('*'), 'is_dir');
print_r($dirs);
다음에, GLOB 를 사용해 디렉토리만을 취득할 수 있습니다.
$directories = glob($somePath . '/*' , GLOB_ONLYDIR);
SPL 디렉토리Iterator 클래스는 파일 시스템디렉토리의 내용을 표시하기 위한 간단한 인터페이스를 제공합니다.
$dir = new DirectoryIterator($path);
foreach ($dir as $fileinfo) {
if ($fileinfo->isDir() && !$fileinfo->isDot()) {
echo $fileinfo->getFilename().'<br>';
}
}
이전 질문과 거의 동일합니다.
$iterator = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator($yourStartingPath),
RecursiveIteratorIterator::SELF_FIRST);
foreach($iterator as $file) {
if($file->isDir()) {
echo strtoupper($file->getRealpath()), PHP_EOL;
}
}
교체하다strtoupper
원하는 기능을 사용할 수 있습니다.
다음 코드를 사용해 보십시오.
<?php
$path = '/var/www/html/project/somefolder';
$dirs = array();
// directory handle
$dir = dir($path);
while (false !== ($entry = $dir->read())) {
if ($entry != '.' && $entry != '..') {
if (is_dir($path . '/' .$entry)) {
$dirs[] = $entry;
}
}
}
echo "<pre>"; print_r($dirs); exit;
어레이:
function expandDirectoriesMatrix($base_dir, $level = 0) {
$directories = array();
foreach(scandir($base_dir) as $file) {
if($file == '.' || $file == '..') continue;
$dir = $base_dir.DIRECTORY_SEPARATOR.$file;
if(is_dir($dir)) {
$directories[]= array(
'level' => $level
'name' => $file,
'path' => $dir,
'children' => expandDirectoriesMatrix($dir, $level +1)
);
}
}
return $directories;
}
//액세스:
$dir = '/var/www/';
$directories = expandDirectoriesMatrix($dir);
echo $directories[0]['level'] // 0
echo $directories[0]['name'] // pathA
echo $directories[0]['path'] // /var/www/pathA
echo $directories[0]['children'][0]['name'] // subPathA1
echo $directories[0]['children'][0]['level'] // 1
echo $directories[0]['children'][1]['name'] // subPathA2
echo $directories[0]['children'][1]['level'] // 1
모든 것을 표시하는 예:
function showDirectories($list, $parent = array())
{
foreach ($list as $directory){
$parent_name = count($parent) ? " parent: ({$parent['name']}" : '';
$prefix = str_repeat('-', $directory['level']);
echo "$prefix {$directory['name']} $parent_name <br/>"; // <-----------
if(count($directory['children'])){
// list the children directories
showDirectories($directory['children'], $directory);
}
}
}
showDirectories($directories);
// pathA
// - subPathA1 (parent: pathA)
// -- subsubPathA11 (parent: subPathA1)
// - subPathA2
// pathB
// pathC
이 기능을 사용해 볼 수 있습니다(PHP 7 필요).
function getDirectories(string $path) : array
{
$directories = [];
$items = scandir($path);
foreach ($items as $item) {
if($item == '..' || $item == '.')
continue;
if(is_dir($path.'/'.$item))
$directories[] = $item;
}
return $directories;
}
비재귀적 목록 전용 디렉토리
직접 질문한 유일한 질문이 잘못 닫혔기 때문에 여기에 넣어야 합니다.
또, 디렉토리를 필터링 할 수도 있습니다.
/**
* Copyright © 2020 Theodore R. Smith <https://www.phpexperts.pro/>
* License: MIT
*
* @see https://stackoverflow.com/a/61168906/430062
*
* @param string $path
* @param bool $recursive Default: false
* @param array $filtered Default: [., ..]
* @return array
*/
function getDirs($path, $recursive = false, array $filtered = [])
{
if (!is_dir($path)) {
throw new RuntimeException("$path does not exist.");
}
$filtered += ['.', '..'];
$dirs = [];
$d = dir($path);
while (($entry = $d->read()) !== false) {
if (is_dir("$path/$entry") && !in_array($entry, $filtered)) {
$dirs[] = $entry;
if ($recursive) {
$newDirs = getDirs("$path/$entry");
foreach ($newDirs as $newDir) {
$dirs[] = "$entry/$newDir";
}
}
}
}
return $dirs;
}
<?php
/*this will do what you asked for, it only returns the subdirectory names in a given
path, and you can make hyperlinks and use them:
*/
$yourStartingPath = "photos\\";
$iterator = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator($yourStartingPath),
RecursiveIteratorIterator::SELF_FIRST);
foreach($iterator as $file) {
if($file->isDir()) {
$path = strtoupper($file->getRealpath()) ;
$path2 = PHP_EOL;
$path3 = $path.$path2;
$result = end(explode('/', $path3));
echo "<br />". basename($result );
}
}
/* best regards,
Sanaan Barzinji
Erbil
*/
?>
적절한 방법
/**
* Get all of the directories within a given directory.
*
* @param string $directory
* @return array
*/
function directories($directory)
{
$glob = glob($directory . '/*');
if($glob === false)
{
return array();
}
return array_filter($glob, function($dir) {
return is_dir($dir);
});
}
Laravel에서 영감을 얻다
다음 재귀 함수는 하위 디렉토리의 전체 목록을 포함하는 배열을 반환합니다.
function getSubDirectories($dir)
{
$subDir = array();
$directories = array_filter(glob($dir), 'is_dir');
$subDir = array_merge($subDir, $directories);
foreach ($directories as $directory) $subDir = array_merge($subDir, getSubDirectories($directory.'/*'));
return $subDir;
}
출처 : https://www.lucidar.me/en/web-dev/how-to-get-subdirectories-in-php/
1개의 라이너 코드는 다음과 같습니다.
$sub_directories = array_map('basename', glob($directory_path . '/*', GLOB_ONLYDIR));
이를 수행하려면 glob() 함수를 사용할 수 있습니다.
다음은 관련 문서입니다.http://php.net/manual/en/function.glob.php
모든 PHP 파일을 재귀적으로 찾습니다.로직은 간단하게 조정할 수 있어야 하며 함수 호출을 회피함으로써 고속화를 목표로 합니다.
function get_all_php_files($directory) {
$directory_stack = array($directory);
$ignored_filename = array(
'.git' => true,
'.svn' => true,
'.hg' => true,
'index.php' => true,
);
$file_list = array();
while ($directory_stack) {
$current_directory = array_shift($directory_stack);
$files = scandir($current_directory);
foreach ($files as $filename) {
// Skip all files/directories with:
// - A starting '.'
// - A starting '_'
// - Ignore 'index.php' files
$pathname = $current_directory . DIRECTORY_SEPARATOR . $filename;
if (isset($filename[0]) && (
$filename[0] === '.' ||
$filename[0] === '_' ||
isset($ignored_filename[$filename])
))
{
continue;
}
else if (is_dir($pathname) === TRUE) {
$directory_stack[] = $pathname;
} else if (pathinfo($pathname, PATHINFO_EXTENSION) === 'php') {
$file_list[] = $pathname;
}
}
}
return $file_list;
}
재귀 디렉토리 목록 솔루션을 찾고 있는 경우.아래 코드를 사용하세요. 도움이 되길 바랍니다.
<?php
/**
* Function for recursive directory file list search as an array.
*
* @param mixed $dir Main Directory Path.
*
* @return array
*/
function listFolderFiles($dir)
{
$fileInfo = scandir($dir);
$allFileLists = [];
foreach ($fileInfo as $folder) {
if ($folder !== '.' && $folder !== '..') {
if (is_dir($dir . DIRECTORY_SEPARATOR . $folder) === true) {
$allFileLists[$folder . '/'] = listFolderFiles($dir . DIRECTORY_SEPARATOR . $folder);
} else {
$allFileLists[$folder] = $folder;
}
}
}
return $allFileLists;
}//end listFolderFiles()
$dir = listFolderFiles('your searching directory path ex:-F:\xampp\htdocs\abc');
echo '<pre>';
print_r($dir);
echo '</pre>'
?>
지정된 디렉토리에서 모든 하위 폴더를 찾습니다.
<?php
function scanDirAndSubdir($dir, &$fullDir = array()){
$currentDir = scandir($dir);
foreach ($currentDir as $key => $filename) {
$realpath = realpath($dir . DIRECTORY_SEPARATOR . $filename);
if (!is_dir($realpath) && $filename != "." && $filename != "..") {
scanDirAndSubdir($realpath, $fullDir);
} else {
$fullDir[] = $realpath;
}
}
return $fullDir;
}
var_dump(scanDirAndSubdir('C:/web2.0/'));
샘플:
array (size=4)
0 => string 'C:/web2.0/config/' (length=17)
1 => string 'C:/web2.0/js/' (length=13)
2 => string 'C:/web2.0/mydir/' (length=16)
3 => string 'C:/web2.0/myfile/' (length=17)
언급URL : https://stackoverflow.com/questions/2524151/php-get-all-subdirectories-of-a-given-directory
'programing' 카테고리의 다른 글
다른 선택문의 결과로 선택문을 작성할 수 있습니까? (0) | 2022.10.08 |
---|---|
확장자가 .a인 파일은 무엇입니까? (0) | 2022.10.08 |
kuid_t 및 이와 유사한 데이터 유형은 왜 구조화됩니까? (0) | 2022.09.27 |
이 이상한 글자들을 어떻게 변환하죠?( (, ,, ,, (, (, )) (0) | 2022.09.27 |
json_forwards() 이스케이프 슬래시 (0) | 2022.09.27 |