コード例 #1
0
ファイル: Folder.php プロジェクト: kentonquatman/portfolio
 /**
  * @return mixed
  */
 public function getSize()
 {
     if (!$this->_size) {
         $this->_size = IOHelper::getFolderSize($this->getRealPath());
     }
     return $this->_size;
 }