if (is_dir($this->rootPath)) {
$this->rootPath = pathinfo($this->rootPath, DIRECTORY_SEPARATOR) .
$this->opDirectory = dir($this->rootPath);
} 他 {
$this->errorMsg = '指定したディレクトリは存在しません。 ';
$this->errorNo = 1001;
throw new Exception($this->errorMsg, $this->errorNo);
}
}
プライベート関数 read($directory, $parentPath, $modeInfo = 'mixed', $defaultDir = false, $fullPath = false) {
$dirInfo = array();
while (FALSE !== ($childDirOrFileName = $directory->read())) {
スイッチ ($modeInfo) {
ケース self::RECDIR_MIXED:
$dirInfo[] = $parentPath : $childDirOrFileName ?
} else {
H If ($ ChilddirorFilename! = '.' && $ ChilddirorFilename! = '..') {
$dirInfo[] = $fullPath ?
}
休憩;
ケース self::RECDIR_DIR:
if (is_dir($parentPath . DIRECTORY_SEPARATOR . $childDirOrFileName)) {
$dirInfo[] = $fullPath ?
if($ childdirorfilename!= '。' && $ childdirorfilename!= '..'){
$dirInfo[] = $fullPath ? Y_SEPARATOR . $childDirOrFileName : $childDirOrFileName;
}
休憩;
ケース self::RECDIR_FILE:
if (is_file($parentPath . DIRECTORY_SEPARATOR . $childDirOrFileName)) {
$dirInfo[] = $fullPath ? $parentPath 。 DIRECTORY_SEPARATOR 。 $childDirOrFileName : $childDirOrFileName;
}
休憩;
}
}
$dirInfo;
を返す
}
/**
* (PHP 5 >= 5.4.0)
* ディレクトリ直下のサブディレクトリまたは直下のサブファイル情報を取得します
* @param string $modeInfo[オプション]
* * ディレクトリ内の情報のモードを返します
* 混合 すべてのファイル名とディレクトリ名を返します
* dir すべてのディレクトリ名を返します
* file すべてのファイル名を返します
* *
* @param bool $defaultDir[オプション]
* デフォルトのリンクディレクトリを含めるかどうか...そして
* falseには
は含まれません
* trueには
が含まれます
* *
* @param bool $fullPath[オプション]
* サブファイルまたはディレクトリのパス情報を返すかどうか
* 本当です
* いいえ
* @return array このディレクトリ内の情報を記録する配列を返します
*/
public function getPathDirectDirInfo($modeInfo = 'mixed', $defaultDir = false, $fullPath = false) {
return $this->read($this->opDirectory, $this->rootPath, $modeInfo, $defaultDir, $fullPath);
}
}
//----------------------------テスト----------------- ------------------------
header("コンテンツタイプ:text/html; charset=UTF-8");
試してください{
$recDir = new RecDir('./CALLTEMP/');
$dirs = $recDir->getPathDirectDirInfo('file', true, true);
var_dump($dirs);
} catch (例外 $ex) {
echo '在文件【' . $ex->getFile() 。 ']中の第' 。 $ex->getLine() 。 「行报错:」 。 $ex->getMessage() 。 '(' . $ex->getCode() . ')';
}
http://www.bkjia.com/PHPjc/1053347.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1053347.html技術記事 php小代码----目录下读取子文件または子目录 ?php class RecDir { protected $rootPath;保護された $opDirectory; const RECDIR_MIXED = 混合; const RECDIR_DIR = ディレクトリ; const RECD...