FilesystemIterator::key()函數是PHP中的一個內置函數,用於檢索當前文件的 key 。
用法:
string FilesystemIterator::key( void )
參數:該函數不接受任何參數。
返回值:此函數根據設置的標誌返回路徑名或文件名。
以下示例程序旨在說明PHP中的FilesystemIterator::key()函數:
示例1:
<?php
// Create new file system iterator
$fileItr = new FilesystemIterator(dirname(__FILE__),
FilesystemIterator::KEY_AS_FILENAME);
// Loop runs for each element of file iterator
foreach($fileItr as $it) {
// Display the key
echo $fileItr->key() . "<br>";
}
?>
輸出:
applications.html bitnami.css dashboard favicon.ico gfg.php img index.php webalizer xampp
示例2:
<?php
// Create new file system iterator
$fileItr = new FilesystemIterator(dirname(__FILE__),
FilesystemIterator::KEY_AS_FILENAME);
// Loop runs while file iterator is valid
while ($fileItr->valid()) {
// Check for non directory files
if (!$fileItr->isDir()) {
// Display the key
echo $fileItr->key() . "<br>";
}
// Move to the next element
$fileItr->next();
}
?>
輸出:
applications.html bitnami.css favicon.ico gfg.php index.php
注意:此函數的輸出取決於服務器文件夾的內容。
參考: https://www.php.net/manual/en/filesystemiterator.key.php
相關用法
- PHP FilesystemIterator next()用法及代碼示例
- PHP FilesystemIterator current()用法及代碼示例
- PHP FilesystemIterator setFlags()用法及代碼示例
- PHP FilesystemIterator rewind()用法及代碼示例
- PHP FilesystemIterator getFlags()用法及代碼示例
- PHP FilesystemIterator __construct()用法及代碼示例
- p5.js red()用法及代碼示例
- p5.js pow()用法及代碼示例
- p5.js log()用法及代碼示例
- PHP key()用法及代碼示例
- p5.js cos()用法及代碼示例
- p5.js sin()用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | FilesystemIterator key() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。