FilesystemIterator::__construct()函數是PHP中的內置函數,用於構造新的文件係統迭代器。
用法:
public FilesystemIterator::__construct( string $path, int $flags )
參數:該函數接受上述和以下描述的兩個參數:
- $path:此參數保存文件係統項的路徑。
- $flags:此參數包含提供某些方法的影響和行為的標誌。
返回值:該函數不返回任何值。
以下示例程序旨在說明PHP中的FilesystemIterator::__construct()函數:
示例1:
<?php
// Create new file system iterator
$fileItr = new FilesystemIterator(dirname(__FILE__));
// Loop runs for each element of filesystem
foreach ($fileItr as $file) {
// Display the filename
echo $file->getFilename() . "<br>";
}
?>
輸出:
applications.html bitnami.css dashboard favicon.ico geeks.PNG gfg.php img index.php Sublime Text Build 3211 x64 Setup.exe webalizer xampp
示例2:
<?php
// Create new file system iterator
$fileItr = new FilesystemIterator(dirname(__FILE__));
// Loop runs while file iterator is valid
while ($fileItr->valid()) {
// Check for directory files
if ($fileItr->isDir()) {
// Display the file name
echo $fileItr->getFilename() . "<br>";
}
// Move to the next element
$fileItr->next();
}
?>
輸出:
dashboard img webalizer xampp
注意:此函數的輸出取決於服務器文件夾的內容。
參考: https://www.php.net/manual/en/filesystemiterator.construct.php
相關用法
- PHP FilesystemIterator key()用法及代碼示例
- PHP FilesystemIterator next()用法及代碼示例
- PHP FilesystemIterator getFlags()用法及代碼示例
- PHP FilesystemIterator setFlags()用法及代碼示例
- PHP FilesystemIterator rewind()用法及代碼示例
- PHP FilesystemIterator current()用法及代碼示例
- p5.js sq()用法及代碼示例
- p5.js abs()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- p5.js box()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | FilesystemIterator __construct() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。