コード例 #1
0
ファイル: _ide_helper.php プロジェクト: whplay/ohmate-shop
 /**
  * Get the file size of a given file.
  *
  * @param string $path
  * @return int 
  * @static 
  */
 public static function size($path)
 {
     return \Illuminate\Filesystem\FilesystemAdapter::size($path);
 }
コード例 #2
0
ファイル: MediaManager.php プロジェクト: talv86/easel
 /**
  * Return the file size.
  *
  * @param $path
  *
  * @return int
  */
 public function fileSize($path)
 {
     return $this->disk->size($path);
 }