Gaufrette\File::getMtime PHP 메소드

getMtime() 공개 메소드

Returns the file modified time.
public getMtime ( ) : integer
리턴 integer
    public function getMtime()
    {
        return $this->mtime = $this->filesystem->mtime($this->key);
    }

Usage Example

예제 #1
0
 public function getLastModified()
 {
     return new DateTime('@' . $this->file->getMtime());
 }
All Usage Examples Of Gaufrette\File::getMtime