The FilesystemIterator class
(PHP 5 >= 5.3.0, PHP 7)
简介
The Filesystem iterator
类摘要
/* 常量 */
    
    
    
    
    
    
    
    
    
    
    
    
    /* 方法 */
    
   public __construct
    ( string 
    
    $path
   [, int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO | FilesystemIterator::SKIP_DOTS
  ] )/* 继承的方法 */
    
   }预定义常量
- FilesystemIterator::CURRENT_AS_PATHNAME
- 
      Makes FilesystemIterator::current() return the pathname. 
- FilesystemIterator::CURRENT_AS_FILEINFO
- 
      Makes FilesystemIterator::current() return an SplFileInfo instance. 
- FilesystemIterator::CURRENT_AS_SELF
- 
      Makes FilesystemIterator::current() return $this (the FilesystemIterator). 
- FilesystemIterator::CURRENT_MODE_MASK
- FilesystemIterator::KEY_AS_PATHNAME
- 
      Makes FilesystemIterator::key() return the pathname. 
- FilesystemIterator::KEY_AS_FILENAME
- 
      Makes FilesystemIterator::key() return the filename. 
- FilesystemIterator::FOLLOW_SYMLINKS
- 
      Makes RecursiveDirectoryIterator::hasChildren() follow symlinks. 
- FilesystemIterator::KEY_MODE_MASK
- FilesystemIterator::NEW_CURRENT_AND_KEY
- 
      Same as FilesystemIterator::KEY_AS_FILENAME | FilesystemIterator::CURRENT_AS_FILEINFO. 
- FilesystemIterator::SKIP_DOTS
- 
      Skips dot files (. and ..). 
- FilesystemIterator::UNIX_PATHS
- 
      Makes paths use Unix-style forward slash irrespective of system default. Note that the paththat is passed to the constructor is not modified.
更新日志
| 版本 | 说明 | 
|---|---|
| 5.3.1 | Added FilesystemIterator::FOLLOW_SYMLINKS | 
Table of Contents
- FilesystemIterator::__construct — Constructs a new filesystem iterator
- FilesystemIterator::current — The current file
- FilesystemIterator::getFlags — Get the handling flags
- FilesystemIterator::key — Retrieve the key for the current file
- FilesystemIterator::next — Move to the next file
- FilesystemIterator::rewind — Rewinds back to the beginning
- FilesystemIterator::setFlags — Sets handling flags