當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Filesystem::size方法代碼示例

本文整理匯總了PHP中Illuminate\Filesystem\Filesystem::size方法的典型用法代碼示例。如果您正苦於以下問題:PHP Filesystem::size方法的具體用法?PHP Filesystem::size怎麽用?PHP Filesystem::size使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Illuminate\Filesystem\Filesystem的用法示例。


在下文中一共展示了Filesystem::size方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: alreadyExists

 /**
  * Determine if routes already exists.
  *
  * @return boolean
  */
 protected function alreadyExists()
 {
     $path = $this->getPath();
     if (!$this->is52or51() && $this->files->exists($path)) {
         return $this->files->size($path) !== 504;
     }
     return $this->files->exists($path);
 }
開發者ID:devdk,項目名稱:signy,代碼行數:13,代碼來源:SetAuthRoutesCommand.php

示例2: attach

 /**
  * Attach files to be uploaded.
  *
  * @param array $files
  *
  * @return \Dingo\Api\Dispatcher
  */
 public function attach(array $files)
 {
     foreach ($files as $key => $file) {
         if (is_array($file)) {
             $file = new UploadedFile($file['path'], basename($file['path']), $file['mime'], $file['size']);
         } elseif (is_string($file)) {
             $finfo = finfo_open(FILEINFO_MIME_TYPE);
             $file = new UploadedFile($file, basename($file), finfo_file($finfo, $file), $this->files->size($file));
         } elseif (!$file instanceof UploadedFile) {
             continue;
         }
         $this->uploads[$key] = $file;
     }
     return $this;
 }
開發者ID:jieke360,項目名稱:api,代碼行數:22,代碼來源:Dispatcher.php

示例3: size

 /**
  * Get the file size of a given file.
  *
  * @param string $path
  * @return int 
  * @static 
  */
 public static function size($path)
 {
     return \Illuminate\Filesystem\Filesystem::size($path);
 }
開發者ID:satriashp,項目名稱:tour,代碼行數:11,代碼來源:_ide_helper.php

示例4: size

 /**
  * @param $path
  * @return int
  */
 public function size($path)
 {
     return $this->storage->size($this->storagePath($path));
 }
開發者ID:stevebauman,項目名稱:core-helper,代碼行數:8,代碼來源:StorageService.php

示例5: sendImage

 private function sendImage($path)
 {
     $image = $this->files->get($path);
     return response()->make($image, 200, ['Content-Type' => 'image/png', 'Cache-Control' => 'public, max-age=157788000', 'Content-Length' => $this->files->size($path), 'Last-Modified' => 'Tue, 11 Jan 2000 00:57:26 GMT', 'Expires' => date(DATE_RFC822, strtotime("720 day")), 'Vary' => 'Accept-Encoding']);
 }
開發者ID:yhbyun,項目名稱:avatar,代碼行數:5,代碼來源:Avatar.php

示例6: getFileSize

 /**
  * Get the size of the file located at the given path.
  *
  * @param string $path
  *
  * @return mixed
  */
 protected function getFileSize($path)
 {
     return $this->filesystem->size($path);
 }
開發者ID:phpspider,項目名稱:laravel-tricks,代碼行數:11,代碼來源:ImageUploadService.php


注:本文中的Illuminate\Filesystem\Filesystem::size方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。