當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP FilesystemIterator current()用法及代碼示例


FilesystemIterator::current()函數是PHP中的內置函數,用於返回當前元素的文件信息。

用法:

mixed FilesystemIterator::current( void )

參數:該函數不接受任何參數。


返回值:此函數根據設置的標誌返回文件名,文件信息或$this。

以下示例程序旨在說明PHP中的FilesystemIterator::current()函數:

程序1:

<?php 
  
// Create new file system iterator 
$fileItr = new FilesystemIterator(__DIR__,  
    FilesystemIterator::CURRENT_AS_PATHNAME); 
  
// Loop runs for each element 
foreach($fileItr as $it) { 
       
    // Display the current element 
    echo $fileItr->current() . "<br>"; 
} 
  
?>

輸出:

C:\xampp\htdocs\applications.html
C:\xampp\htdocs\bitnami.css
C:\xampp\htdocs\dashboard
C:\xampp\htdocs\favicon.ico
C:\xampp\htdocs\geeks.PNG
C:\xampp\htdocs\gfg.php
C:\xampp\htdocs\img
C:\xampp\htdocs\index.php
C:\xampp\htdocs\Sublime Text Build 3211 x64 Setup.exe
C:\xampp\htdocs\webalizer
C:\xampp\htdocs\xampp

程序2:

<?php 
  
// Create new file system iterator 
$fileItr = new FilesystemIterator(__DIR__,  
    FilesystemIterator::CURRENT_AS_PATHNAME); 
  
// Loop runs file iterator is valid 
while ($fileItr->valid()) { 
  
    // Check for directory file iterator 
    if ($fileItr->isDir()) { 
  
        // Display the current element 
        echo $fileItr->current() . "<br>"; 
    } 
  
    // Move to the next file iterator 
    $fileItr->next(); 
} 
  
?>

輸出:

C:\xampp\htdocs\dashboard
C:\xampp\htdocs\img
C:\xampp\htdocs\webalizer
C:\xampp\htdocs\xampp

注意:此函數的輸出取決於服務器文件夾的內容。

參考: https://www.php.net/manual/en/filesystemiterator.current.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | FilesystemIterator current() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。