doFetch() protected method

protected doFetch ( $id )
コード例 #1
0
ファイル: File.php プロジェクト: drabberhorizon/ActiveNative
 public function doFetch($id)
 {
     if (self::$invalidateOpCacheBeforeRead) {
         $this->invalidateCacheFile($id);
     }
     return parent::doFetch($id);
 }
コード例 #2
0
 protected function doFetch($id)
 {
     $data = parent::doFetch($id);
     if ($data) {
         return unserialize($data);
     }
 }