コード例 #1
0
ファイル: File.php プロジェクト: drabberhorizon/ActiveNative
 public function doFlush()
 {
     // if the directory does not exist, do not bother to continue clearing
     if (!is_dir($this->directory)) {
         return;
     }
     foreach ($this->getFileIterator() as $name => $file) {
         $this->opCacheInvalidate($name);
     }
     parent::doFlush();
 }